-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 856 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
import setuptools
_pkg_version = "1.0.1"
_author = "Thomas McGowan"
_author_email = "[email protected]"
_license = "MIT"
_repo = "https://github.com/galaxyproteomics/fastg2protlib"
setuptools.setup(
name="fastg2protlib",
version=f"{_pkg_version}",
packages=["fastg2protlib"],
install_requires=["biopython", "lxml", "networkx", "numpy", "pyteomics", "matplotlib"],
description="FASTG sequences to a protein library",
author=f"{_author}",
author_email=f"{_author_email}",
url="f{_repo}",
download_url=f"{_repo}/archive/v_{_pkg_version}.tar.gz",
license=f"{_license}",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
],
python_requires=">=3.6",
)