Skip to content

Commit

Permalink
Clean up setup.py (#1118)
Browse files Browse the repository at this point in the history
* updated setup.py requirements

* cleaned up install_requires list
  • Loading branch information
kosack authored Aug 20, 2019
1 parent 31d0f09 commit 7162241
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
'ctapipe-reconstruct-muons = ctapipe.tools.muon_reconstruction:main',
'ctapipe-display-integration = ctapipe.tools.display_integrator:main',
'ctapipe-display-dl1 = ctapipe.tools.display_dl1:main',

]

package.version.update_release_version()
Expand All @@ -55,23 +54,26 @@
# astropy already depends on it)
install_requires=[
'astropy~=3.0',
'iminuit',
'numpy',
'scipy>=0.19',
'tables',
'tqdm',
'traitlets',
'bokeh~=1.0',
'eventio>=0.20.1,<0.21',
'iminuit>=1.3',
'matplotlib~=3.0',
'numba>=0.43',
'numpy~=1.11',
'pandas>=0.24.0',
'psutil',
'matplotlib>=2.0',
'numba',
'pandas',
'bokeh>=1.0.1',
'scikit-learn',
'eventio~=0.20.1',
'scipy~=1.2',
'tables~=3.4',
'tqdm>=4.32',
'traitlets>=4.1,<5.0',
],
# here are optional dependencies (as "tag" : "dependency spec")
extras_require={
},
tests_require=[
'pytest',
'ctapipe-extra>=0.2.11',
'ctapipe-extra>=0.2.11,<0.3',
'pyhessio>=2.1',
],
setup_requires=['pytest_runner'],
Expand All @@ -83,8 +85,6 @@
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: C',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Astronomy',
Expand Down

0 comments on commit 7162241

Please sign in to comment.