forked from jphuse/nuskell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.4 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.4 KB
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
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name = 'nuskell',
version = '0.8',
description = 'Domain-level strand displacement compiler',
long_description = LONG_DESCRIPTION,
long_description_content_type = 'text/markdown',
author = 'Stefan Badelt, Seung Woo Shin, Robert Johnson, Qing Dong, Erik Winfree',
author_email = 'winfree@caltech.edu',
maintainer = 'Stefan Badelt',
maintainer_email = 'bad-ants-fleet@posteo.eu',
url = 'http://www.github.com/DNA-and-Natural-Algorithms-Group/nuskell/',
license = 'MIT',
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.8',
'Intended Audience :: Science/Research',
],
python_requires = '>=3.8',
install_requires = [
'natsort',
'pyparsing',
'dsdobjects>=0.8',
'peppercornenumerator>=1.1',
'crnverifier>=0.3'],
packages = ['nuskell', 'nuskell.dsdcompiler'],
include_package_data = True,
package_data = {'nuskell.dsdcompiler': ['schemes/literature/*.ts',
'schemes/variants/*.ts']},
test_suite = 'tests',
entry_points = {
'console_scripts': [
'nuskell=nuskell.framework:main',
'nuskellCMP=nuskell.compare_schemes:main'
],
}
)