This repository has been archived by the owner on Jun 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
58 lines (54 loc) · 2.46 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
58
"""
Setup for Arbo
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
from arbow.version import __version__ as version
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="arbow", # Required
version=version, # Required
description="Cultivate your MSA to get better trees", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional (see note above)
url="https://github.com/MDPHL/arbow", # Optional
author="Microbiological Diagnostic Unit Public Health Laboratory", # Optional
author_email="[email protected]", # Optional
classifiers=[ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="bioinformatics phylogenetics multiple sequence alignment msa", # Optional
# When your source code is in a subdirectory under the project root, e.g.
# `src/`, it is necessary to specify the `package_dir` argument.
# package_dir={"": "arbow"}, # Optional
# You can just specify package directories manually here if your project is
# simple. Or you can use find_packages().
#
# Alternatively, if you just want to distribute a single Python file, use
# the `py_modules` argument instead as follows, which will expect a file
# called `my_module.py` to exist:
#
# py_modules=["arbow"],
#
packages=find_packages(where="."), # Required
python_requires=">=3.6, <4",
install_requires=["pandas", "click", "numpy", "biopython", "scipy"], # Optional
# extras_require={"dev": ["check-manifest"], "test": ["coverage"]}, # Optional
# package_data={"sample": ["package_data.dat"]}, # Optional
# data_files=[("my_data", ["data/data_file"])], # Optional
entry_points={"console_scripts": ["arbow=arbow.__main__:main"]}, # Optional
project_urls={ # Optional
"Bug Reports": "https://github.com/MDUPHL/arbow/issues",
"Source": "https://github.com/MDUPHL/arbow/",
},
)