Skip to content

Commit

Permalink
updated setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
Zigur committed Dec 20, 2019
1 parent 2f77eb0 commit 1add99b
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='isatools',
version='0.10.4',
version='0.11.0',
packages=['isatools',
'isatools.convert',
'isatools.create',
Expand Down Expand Up @@ -41,25 +41,26 @@
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
install_requires=[
'numpy',
'jsonschema',
'pandas',
'networkx',
'lxml',
'requests',
'chardet',
'iso8601',
'jinja2',
'beautifulsoup4',
'mzml2isa',
'biopython',
'progressbar2',
'deepdiff'
'numpy>=1.17',
'jsonschema>=3.1',
'pandas>=0.25',
'networkx>=2.4',
'lxml>=4.4',
'requests>=2.22',
'chardet>=3.0.4',
'iso8601>=0.1.12',
'jinja2>=2.10.3',
'beautifulsoup4>=4.8',
'mzml2isa>=1.0.2',
'biopython>=1.74',
'progressbar2>=3.47.0',
'deepdiff>=4.0.8',
'PyYAML>=5.2'
],
test_suite='tests'
)

0 comments on commit 1add99b

Please sign in to comment.