-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.05 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
#!/usr/bin/env python3
import os
from setuptools import setup
setup(
name="doxec",
version= "0.3.2",
author="Frank Sauerburger",
author_email= "[email protected]",
description=("Run documentation and test whether the examples work."),
install_requires=["argparse"],
license="MIT",
packages=['doxec'],
scripts=['bin/doxec'],
test_suite='doxec.tests',
url="https://gitlab.sauerburger.com/frank/doxec",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: Education :: Testing",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Interpreters",
]
)