-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (49 loc) · 1.7 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
51
52
53
54
55
56
57
from setuptools import setup
from glob import glob
from pathlib import Path
CURRENT_DIR = Path(__file__).parent
long_description = (CURRENT_DIR / "README.md").read_text(encoding="utf8")
description = "PhageAI is an AI-driven software platform using advanced Machine Learning" \
" and Natural Language Processing techniques for deeper understanding of" \
" the bacteriophages genomics."
# Read requirements and process as list of strings
dependencies = (CURRENT_DIR / "requirements.txt").read_text()
dependencies = list(map(str.strip, filter(None, dependencies.split("\n"))))
version = "0.1.0"
setup(
name="phageai",
version=version,
license="MIT",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author="Proteon Pharmaceuticals S.A.",
author_email="[email protected]",
url="https://github.com/ProteonPharmaceuticals/phageai",
download_url=f"https://github.com/ProteonPharmaceuticals/phageai/archive/v{version}.tar.gz",
setup_requires=["setuptools>=50.3.0", "wheel>=0.35.1"],
install_requires=dependencies,
packages=[
"phageai",
"phageai.lifecycle",
],
data_files=glob("examples/*/**"),
include_package_data=True,
keywords=[
"bacteriophages",
"phages",
"phage therapy",
"phage research",
"phage lifecycle",
"phage taxonomy",
"virulent phage",
"temperate phage",
"chronic phage",
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
python_requires=">=3.8",
)