-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.28 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
import os
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="rtm_doorstop",
version="1.1.1",
author="Andrew Simon",
author_email="[email protected]",
maintainer="Andrew Simon",
maintainer_email="[email protected]",
license="GNU GPL v3.0",
url="https://github.com/scuriosity/rtm_doorstop",
description="A tool to generate Requirement Traceability Matrices (RTMs) from Doorstop documents.",
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=["rtm_doorstop"],
python_requires=">=3.7",
install_requires=["doorstop>=2.0.0", "rapidtables>=0.1", "fire>=0.3", "tabulate>=0.8.0"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={
"console_scripts": ["rtm_doorstop = rtm_doorstop:main"],
},
)