forked from MarcoDiSalvo90/RhoTermPredict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (31 loc) · 1.19 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
from setuptools import setup
setup(
name="rhotermpredict",
version="3.4",
python_requires='>=3.10',
packages=["rhotermpredict"],
package_dir={"rhotermpredict": "rhotermpredict"},
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=["numpy >= 1.15.4", "biopython >= 0.1.0"],
# metadata to display on PyPI
author="Cameron Roots",
author_email="[email protected]",
description="RhoTermPredict (Barrick Lab Fork)",
keywords="",
url="https://github.com/barricklab/RhoTermPredict", # project home page, if any
project_urls={
"Bug Tracker": "https://github.com/barricklab/RhoTermPredict/issues",
"Source Code": "https://github.com/barricklab/RhoTermPredict",
},
include_package_data=True,
classifiers=["License :: OSI Approved :: GNU Affero General Public License v3"],
entry_points={
"console_scripts": [
"rhotermpredict = rhotermpredict.algorithm:main",
],
},
long_description = open("README.md").read(),
long_description_content_type = "text/markdown",
# could also include long_description, download_url, etc.
)