-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (52 loc) · 1.62 KB
/
setup.py
File metadata and controls
executable file
·56 lines (52 loc) · 1.62 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
import os
import shutil
import glob
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
"numpy >= 1.10.4",
"scipy >= 0.16.0",
"pandas >= 0.18.0",
"statsmodels >= 0.6.1",
"matplotlib >= 1.4.3",
"pyyaml >= 3.12",
"sphinx_rtd_theme",
"sphinx >= 1.5.6",
"tables >= 3.2.0",
"dask[dataframe]",
"fastparquet",
]
# Copy script files
plugins_folder = os.path.join(os.path.expanduser("~"), ".countess/")
os.makedirs(plugins_folder, exist_ok=True)
for file in glob.glob("plugins/*.py"):
shutil.copy(file, plugins_folder)
for file in glob.glob("plugins/*.txt"):
shutil.copy(file, plugins_folder)
setuptools.setup(
name="CountESS",
version="0.0.1",
author="Alan F Rubin",
author_email="alan.rubin@wehi.edu.au",
description="Analysis program for calculating variant scores from "
"deep mutational scanning data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/countess-project/countess",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": ["enrich_cmd = countess.main:main_cmd"],
"gui_scripts": ["enrich_gui = countess.main:main_gui"],
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
install_requires=requirements,
test_suite="tests",
)