Move version string into module
This commit is contained in:
parent
c8298d916f
commit
d0b303523e
2 changed files with 6 additions and 1 deletions
|
|
@ -1 +1,5 @@
|
|||
from .simulation import Simulation, type_to_C
|
||||
|
||||
__author__ = 'Jan Petykiewicz'
|
||||
|
||||
version = '0.4'
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -1,9 +1,10 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
import opencl_fdtd
|
||||
|
||||
setup(name='opencl_fdtd',
|
||||
version='0.4',
|
||||
version=opencl_fdtd.version,
|
||||
description='OpenCL FDTD solver',
|
||||
author='Jan Petykiewicz',
|
||||
author_email='anewusername@gmail.com',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue