-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·58 lines (50 loc) · 1.65 KB
/
setup.py
File metadata and controls
executable file
·58 lines (50 loc) · 1.65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
with open("README.md", "r", encoding="UTF-8") as f:
readme = f.read()
with open("requirements.txt", "r", encoding="UTF-8") as f:
requirements = f.read().splitlines()
setup(
name="rna_secstruct_design",
version="0.1.0",
description="A set of scripts for handdling common secondary structure design algorithms",
long_description=readme,
long_description_content_type="test/markdown",
author="Joe Yesselman",
author_email="jyesselm@unl.edu",
url="https://github.com/jyesselm/rna_secstruct_design",
packages=[
"rna_secstruct_design",
],
package_dir={"rna_secstruct_design": "rna_secstruct_design"},
py_modules=[
"rna_secstruct_design/cli" "rna_secstruct_design/constraints",
"rna_secstruct_design/dataframe",
"rna_secstruct_design/helix_randomizer",
"rna_secstruct_design/logger",
"rna_secstruct_design/mutations",
"rna_secstruct_design/selection",
"rna_secstruct_design/util",
],
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords="rna_secstruct_design",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
],
entry_points={
"console_scripts": ["rna-struct-design = rna_secstruct_design.cli:cli"]
},
)