-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 936 Bytes
/
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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='phamer',
version='0.1',
description='Phage identification',
url='https://github.com/KennthShang/PhaMer',
author='SHANG Jiayu',
long_description=long_description,
long_description_content_type='text/markdown',
author_email='[email protected]',
license='GPLv3',
package_data={'PhaMer': ['data/database.fa.bz2',
'data/contigs.csv',
'data/pc2wordsid.dict',
'data/pcs.csv',
'data/profiles.csv',
'data/proteins.csv',
]},
scripts=['preprocessing.py', 'PhaMer.py'],
install_requires=[
'networkx>=2.2',
'numpy>=1.20.1',
'pandas>=1.0.5',
]
)