-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (42 loc) · 1.17 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
import setuptools
setuptools.setup(
name="axolotl",
version="0.2.0",
scripts=[
"axolotl/axolotl"
],
author="Joint Genome Institute - Genome Analysis R&D",
author_email="[email protected]",
description=("A Python Genomics Library based on pySpark"),
long_description="",
url="https://github.com/zhongwang/axolotl",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
],
python_requires=">=3.6",
test_suite="tests",
install_requires=[
"pyspark",
"pyarrow",
"biopython==1.78",
"pyhmmer",
"scikit-learn>=0.19.0",
"numpy",
"pandas",
"tqdm"
],
tests_require=[
],
license="BSD license",
zip_safe=False
)