-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 731 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 731 Bytes
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
from setuptools import find_packages, setup
import os
# Set the base directory location which is the location of the setup.py file
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
setup(
name="phanta",
version="0.4",
description="Python package to assemble phage illumina reads",
author="Joshua J Iszatt",
author_email="joshiszatt@gmail.com",
classifiers=[
"Development Status :: 4 - Beta",
],
python_requires=">=3.10",
packages=find_packages(include=['phanta', 'phanta.*']),
package_data={
'phanta': ['config.json', 'logging.json'],
},
install_requires=[
"pandas",
"numpy",
"biopython",
"matplotlib",
"pytest",
]
)