Move version number into module
This commit is contained in:
parent
e6403462b6
commit
9b82a5d16d
2 changed files with 4 additions and 1 deletions
|
|
@ -21,3 +21,5 @@ from .direction import Direction
|
|||
from .grid import Grid
|
||||
|
||||
__author__ = 'Jan Petykiewicz'
|
||||
|
||||
version = '0.2'
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -1,9 +1,10 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
import gridlock
|
||||
|
||||
setup(name='gridlock',
|
||||
version='0.2',
|
||||
version=gridlock.version,
|
||||
description='Coupled gridding library',
|
||||
author='Jan Petykiewicz',
|
||||
author_email='anewusername@gmail.com',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue