-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (39 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
from setuptools import setup, find_packages
setup(name='EAGLE',
version='0.22.1',
author="Denis Moshensky",
author_email="loven-doo@fbb.msu.ru",
description="Essential and Advantageous Genes Location Explorer",
url="https://github.com/loven-doo/EAGLE",
classifiers=[
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(exclude=find_packages("Research").__add__(["eagle.tests", "eagledb.tests", "Research"])),
package_data={'eagle': ['configs/*', 'tests/*'],
'eagledb': ['org_tables/*', 'tests/*']},
install_requires=[
'wget >= 3.2',
'pyaml >= 3.12',
'numpy >= 1.14.3',
'pandas == 0.22.0',
'matplotlib >= 2.2.3',
'scipy >= 1.1.0',
'biopython >= 1.72',
'DendroPy >= 4.4.0',
'redis >= 2.10.6',
'psutil >= 5.6.1',
],
entry_points={
'console_scripts': [
"eagle_db.prepare_ncbi_summary = eagledb.files_utils:prepare_summary_table",
"eagle_db.get_analyzed_bacteria = eagledb.files_utils:are_bacteria_analyzed",
"eagle_db.join_bacteria_lists = eagledb.files_utils:join_bacteria_list_files",
"eagle_db = eagledb.__main__:main",
"eagle = eagle.__main__:main",
"eagle.explore_orfs = eagle.orfs_explorer:explore_orfs_cmd",
"eagle.classify_orfs = eagle.orfs_classifier:classify_orfs_cmd",
"eagle.btax_name = eagle.btax_scanner:get_btax_name_cmd",
]
})