forked from Lattice-Automation/primers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.15 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
35
36
37
38
39
40
import sys
from pkg_resources import VersionConflict, require
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
try:
require("setuptools>=38.3")
except VersionConflict:
print("Error: version of setuptools is too old (<38.3)!")
sys.exit(1)
setup(
name="primers",
version="0.5.4",
description="Create PCR primers with optimal lengths, tms, gc%s and free energies",
author="JJTimmons",
author_email="[email protected]",
license="mit",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Lattice-Automation/primers",
install_requires=requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Environment :: Console",
],
entry_points={"console_scripts": ["primers=primers.main:run"]},
zip_safe=False,
python_requires=">=3.0",
)