get setup to provide package
This commit is contained in:
parent
e0510199c6
commit
2998fd2613
2 changed files with 9 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
__version__ = "0.0.2"
|
__version__ = "0.1.1"
|
||||||
|
|
9
setup.py
9
setup.py
|
@ -1,11 +1,18 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
from distutils.util import convert_path
|
||||||
|
|
||||||
|
|
||||||
|
version = {}
|
||||||
|
with open(convert_path('corrlib/version.py')) as ver_file:
|
||||||
|
exec(ver_file.read(), version)
|
||||||
|
|
||||||
setup(name='pycorrlib',
|
setup(name='pycorrlib',
|
||||||
version='0.1.1',
|
version=version['__version__'],
|
||||||
author='Justus Kuhlmann',
|
author='Justus Kuhlmann',
|
||||||
author_email='j_kuhl19@uni-muenster.de',
|
author_email='j_kuhl19@uni-muenster.de',
|
||||||
install_requires=['pyerrors>=2.11.1', 'datalad>=1.1.0', 'typer>=0.12.5'],
|
install_requires=['pyerrors>=2.11.1', 'datalad>=1.1.0', 'typer>=0.12.5'],
|
||||||
entry_points = {
|
entry_points = {
|
||||||
'console_scripts': ['pcl=corrlib.cli:app'],
|
'console_scripts': ['pcl=corrlib.cli:app'],
|
||||||
},
|
},
|
||||||
|
packages=['corrlib']
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue