-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (53 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (53 loc) · 1.7 KB
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
57
58
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.rst")) as f:
long_description = f.read()
# Get package metadata from 'crc/__about__.py' file
about = {}
with open(path.join(here, "crc", "__about__.py")) as f:
exec(f.read(), about)
setup(
name=about["__title__"],
version=about["__version__"],
description=about["__summary__"],
long_description=long_description,
url=about["__url__"],
download_url=about["__download_url__"],
maintainer=about["__maintainer__"],
maintainer_email=about["__email__"],
license=about["__license__"],
packages=find_packages(exclude=["tests", "tests.*", "*.tests", "*.tests.*"]),
install_requires=["numpy>=1.14.5", "networkx>=1.8.1,<=2.3"],
extras_require={
"package": ["twine", "wheel"],
"test": [
"check-manifest",
"docutils",
"pytest-cov",
"flake8",
"coverage>=4.2",
],
},
entry_points={"console_scripts": ["crc=crc.bin.crc3:main"]},
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords=[
"bioinformatics",
"crc",
"core",
"transcriptional",
"regulatory",
"circuitry",
],
)