-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
56 lines (52 loc) · 1.62 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
from prospectdataset.version import META_DATA, __version__
VERSION = __version__
setuptools.setup(
name=META_DATA["package_name"].lower(),
version=VERSION,
author=META_DATA["author"],
author_email=META_DATA["author_email"],
description=META_DATA["description"],
long_description=long_description,
long_description_content_type="text/markdown",
url=META_DATA["github_url"],
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"shuffle-split-data = prospectdataset.scripts.shuffle_split:main",
"merge-files = prospectdataset.scripts.merge_files:main",
"filter-irt = prospectdataset.scripts.filter_irt:main",
]
},
install_requires=[
"numpy",
"pandas",
"fastparquet",
"pyarrow",
"requests",
"bs4",
"spectrum_fundamentals @ git+https://github.com/wilhelm-lab/spectrum_fundamentals.git@main",
],
extras_require={
"dev": [
"pytest >= 3.7",
"pytest-cov",
"black",
"twine",
"setuptools",
"wheel",
"pylint",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
],
)