-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 916 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
29
30
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme = readme_file.read()
requirements = ["biopython>=1.80",
"networkx>=2.8.8",
"scipy>=1.9.3",
"biodata>=0.0.6"]
setup(
name="residuecontact",
version="0.0.5",
author="Alden Leung",
author_email="[email protected]",
description="A utility package to generate 3D residue distance graph",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/aldenleung/residuecontact/",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)