-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
50 lines (48 loc) · 1.3 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
45
46
47
48
49
50
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), "r") as fh:
long_description = fh.read()
setup(
name="phigaro",
description="Phigaro is a scalable command-line tool for predicting phages and prophages.",
long_description=long_description,
long_description_content_type="text/markdown",
version="2.4.0",
license="MIT",
author="E.Starikova, N.Pryanichnikov, P.Tikhonova",
author_email="[email protected]",
url="https://github.com/bobeobibo/phigaro",
packages=[
"phigaro",
"phigaro.finder",
"phigaro.cli",
"phigaro.batch",
"phigaro.batch.task",
"phigaro.misc",
"phigaro.to_html",
],
package_data={"": ["*.json", "*.csv", "README.md"]},
entry_points={
"console_scripts": [
"phigaro = phigaro.cli.batch:main",
"phigaro-setup = phigaro.cli.helper:main",
]
},
install_requires=[
"numpy",
"six>=1.7.0",
"pandas>=0.23.4",
"sh",
"singleton",
"PyYAML>=5.1",
"future",
"argparse",
"numpy",
"plotly",
"bs4",
"beautifulsoup4>=4.4.0",
"lxml",
"biopython",
],
)