-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (29 loc) · 1.1 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as rq:
install_requires = rq.read()
setuptools.setup(
name="ACSNI",
version="1.0.6",
scripts=["bin/ACSNI-run", "bin/ACSNI-derive", "bin/ACSNI-get", "bin/ACSNI-split"],
author="Chinedu A. Anene",
collaborator="Faraz Khan",
author_email="[email protected]",
description="automatic context-specific network inference",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/caanene1/ACSNI",
download_url = "https://github.com/caanene1/ACSNI/releases/download/1.0.6/ACSNI-1.0.6-py3-none-any.whl",
packages=setuptools.find_packages(include=["ACSNI"]),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=install_requires,
python_requires='>=3.8',
)
# Build >> python3 setup.py sdist bdist_wheel
# Upload >> sudo twine upload dist/*