-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.14 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.14 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
import setuptools
__version__ = '0.3.7'
__author__ = ['Forest Dussault', 'Adrian Verster', 'Nicholas Petronella']
__email__ = 'forest.dussault@canada.ca'
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="centreseq",
install_requires=['click>=7.0',
'pandas>=0.24.0',
'dataclasses>=0.6',
'xlsxwriter>=1.1.8',
'tqdm>=2.2.3',
'biopython>=1.70',
'scipy>=1.1'
],
python_requires='~=3.6',
description="Fast generation of a core genome among bacterial strains",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bfssi-forest-dussault/centreseq",
include_package_data=True, # Must be supplemented by MANIFEST.in file containing paths to extra files
packages=setuptools.find_packages(),
version=__version__,
author=__author__,
author_email=__email__,
entry_points={
'console_scripts': [
'centreseq=centreseq.centreseq_cli:cli'
]
}
)