-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (52 loc) · 1.68 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import os
import sys
import setuptools
sys.path.insert(0, os.path.dirname(__file__))
import seqgra
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="seqgra",
version=seqgra.__version__,
author="Konstantin Krismer",
author_email="[email protected]",
license="MIT License",
description="Synthetic rule-based biological sequence data generation for architecture evaluation and search",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://kkrismer.github.io/seqgra/",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
package_data={seqgra.__name__: [
"data-config.xsd", "model-config.xsd",
"evaluator/plotagreement.R",
"simulator/heatmap/heatmap.R",
"simulator/motif/similarity.R"]},
install_requires=[
"Cython>=0.29",
"lxml>=4.4.1",
"matplotlib>=3.1",
"numpy>=1.14",
"pandas>=0.25",
"PyYAML>=5.3",
"scikit-image>=0.16",
"scikit-learn>=0.21",
"scipy>=1.3",
"setuptools>=42",
"ushuffle>=1.1.2"
],
python_requires=">=3",
entry_points={
"console_scripts": ["seqgra=seqgra.seqgra:main",
"seqgras=seqgra.seqgras:main",
"seqgrae=seqgra.seqgrae:main",
"seqgraa=seqgra.seqgraa:main"]
}
)