-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (39 loc) · 1.32 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
41
42
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()
setup(
name="synbio",
version="0.6.17",
python_requires=">=3",
author="JJTimmons",
author_email="[email protected]",
url="https://github.com/Lattice-Automation/synbio",
description="Synbio design and build library",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="synbio, lab automation, dna assembly",
license="GNU General Public License v2 (GPLv2)",
packages=find_packages(exclude=["data"]),
install_requires=requirements,
data_files=[
(
"data",
[
"data/features/dna.id.pickle",
"data/features/dna.kmermap.pickle",
"data/features/protein.id.pickle",
"data/features/protein.kmermap.pickle",
],
)
],
test_suite="tests.suite",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)