-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
40 lines (36 loc) · 1.23 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
import setuptools
with open("README.md") as f:
LONG_DESCRIPTION, LONG_DESC_TYPE = f.read(), "text/markdown"
with open("reqs/base-requirements.txt") as f:
REQUIREMENTS = f.read().splitlines()
NAME = "comut"
AUTHOR_NAME, AUTHOR_EMAIL = "Jett Crowdis", "[email protected]"
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
LICENSE = "MIT"
DESCRIPTION = "A Python library for creating comutation plots to visualize genomic and phenotypic information"
URL = "https://github.com/vanallenlab/comut"
PYTHON_REQ = ">=3.6"
setuptools.setup(
name=NAME,
version="0.0.3",
author=AUTHOR_NAME,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
license=LICENSE,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
url=URL,
packages=setuptools.find_packages(),
classifiers=CLASSIFIERS,
python_requires=PYTHON_REQ,
install_requires=REQUIREMENTS,
)