-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (40 loc) · 1.2 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
from setuptools import find_packages, setup
import sys
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
"attrs",
"requests",
"fqfa>=1.2.1",
"mavehgvs",
"numpy",
"pandas",
"idutils",
]
# fqfa requires backported dataclasses in Python 3.6
if sys.version_info.major == 3 and sys.version_info.minor == 6:
requirements.append("dataclasses")
setup(
name="mavetools",
version="0.2.0",
author="MaveDB Developers",
author_email="alan.rubin@wehi.edu.au",
description=(
"Useful functions for manipulating Multiplex Assay of Variant Effect datasets."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VariantEffect/mavetools",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=requirements,
test_suite="tests",
)