-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·34 lines (30 loc) · 1.04 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
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name="OSTIR",
version="1.1.3",
author="Cameron Roots, Alexandra Lukasiewicz, Jeffrey Barrick, ",
author_email="[email protected]",
description="Open Source Transcription Initiation Rates",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/barricklab/ostir",
packages=setuptools.find_packages(exclude=['tests', 'calibration']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
install_requires=['numpy'],
extras_require={"status": ["progress"],
"nice_text": ["rich"],},
include_package_data=True,
test_suite="tests",
entry_points={
'console_scripts' : [
'ostir = ostir.ostir:main',
],
},
)