Skip to content

Commit

Permalink
setup updated
Browse files Browse the repository at this point in the history
  • Loading branch information
lbusoni committed Jan 10, 2022
1 parent 568e4fb commit dfb66f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@ def run(self):
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
long_description='tipico is a useless application to test the https://github.com/ArcetriAdaptiveOptics/plico environment',
url='',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url=URL,
author_email=EMAIL,
author=AUTHOR,
license=LICENSE,
Expand All @@ -89,7 +90,7 @@ def run(self):
package_data={
'tipico': ['conf/tipico.conf'],
},
install_requires=["plico>=0.15",
install_requires=["plico>=0.20",
"numpy",
"six",
"astropy",
Expand Down
2 changes: 1 addition & 1 deletion tipico/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 16, 0)
VERSION = (0, 16, 1)

__version__ = '.'.join(map(str, VERSION))

0 comments on commit dfb66f5

Please sign in to comment.