-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 1.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="IsoQ",
version="0.1",
author="Pierre Millard, Baudoin Delépine",
author_email="[email protected]",
description="Automated processing of single-experiment isotopic and metabolomics measurements",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MetaSys-LISBP/IsoQ/",
packages=setuptools.find_packages(),
python_requires='>=3.5',
install_requires=['pandas>=0.17.1', 'numpy>=1.15.0', 'matplotlib>=2.2.0'],
package_data={'': ['data/*.csv', ], },
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
)