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
|
from setuptools import setup
INSTALL_REQUIRES = ["Biopython"]
TEST_REQUIRES = [
"pytest",
"coverage",
"pytest-cov",
"collective.checkdocs",
"pygments",
]
with open("README.md", "r") as f:
long_description = f.read()
with open("PeptideBuilder/__init__.py", "r") as f:
init = f.readlines()
for line in init:
if "__version__" in line:
__version__ = line.split('"')[-2]
setup(
name="PeptideBuilder",
version=__version__,
author="Matthew Z. Tien",
author_email="Matthew.Tien89@gmail.com",
description="Create peptide PDB files with specified geometry",
long_description=long_description,
long_description_content_type="ext/markdown",
url="https://github.com/clauswilke/PeptideBuilder",
download_url="https://github.com/clauswilke/PeptideBuilder/releases",
platforms="Tested on Mac OS X and Windows 10",
packages=["PeptideBuilder"],
install_requires=INSTALL_REQUIRES,
extras_require={"test": TEST_REQUIRES + INSTALL_REQUIRES,},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Intended Audience :: Science/Research",
],
)
|