-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.03 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
"""Configure doxy_db."""
from setuptools import setup
with open("README.md", "r") as f:
readme = f.read()
setup(
name="doxy_db",
author="Travis A. Everett",
author_email="[email protected]",
install_requires=[],
setup_requires=["pytest-runner"],
tests_require=["pytest", "coverage"],
extras_require={"dev": ["black"]},
packages=["doxy_db"],
# description="",
long_description=readme,
include_package_data=True,
classifiers=[
# 'Development Status :: 3 - Alpha',
"License :: OSI Approved :: MIT License",
# 'Programming Language :: Python :: 2.7',
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
license="MIT",
keywords="Doxygen docs documentation sqlite3",
url="https://github.com/abathur/doxy_db",
project_urls={
"Issue Tracker": "https://github.com/abathur/doxy_db/issues",
# "Documentation": "https://github.com/abathur/doxy_db",
},
test_suite="doxy_db.tests",
)