-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) 路 1.32 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (38 loc) 路 1.32 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
from setuptools import setup, find_packages
def parse_requirements(filename):
"""Load requirements from a pip requirements file"""
with open(filename, "r") as f:
lines = f.readlines()
reqs = [line.strip() for line in lines if line.strip() and not line.startswith("#")]
return reqs
setup(
name="DashingTurtle",
author="J. White Bear",
version="0.1.19",
author_email="jwbear15@gmail.com",
description="An applicaton for building structural landscapes of RNA sequence modifications with Nanopore data.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/jwbear/Dashing_Turtle.git",
packages=find_packages(),
install_requires=parse_requirements("requirements.txt"),
include_package_data=True,
use_scm_version=True,
setup_requires=['setuptools_scm'],
package_data={
"DashML.Varna": ["VARNAv3-93.jar"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
entry_points={
"console_scripts": [
"dt-db=DashML.db.dt_db:main",
"dt-cli = DashML.UI.DT_CLI:main",
"dt-gui = DashML.GUI.DT:main",
],
},
)