-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.25 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
37
from setuptools import setup
with open("README.md", "r") as readme_fd:
long_description = readme_fd.read()
setup(
name="sphinx-autoschematics",
version="0.2.0",
description="sphinx-autoschematics provides sphinx extensions for documenting schematics models",
long_description=long_description,
long_description_content_type="text/markdown",
author="Evan Borgstrom",
author_email="evan@borgstrom.ca",
url="https://github.com/NerdWalletOSS/sphinx-autoschematics",
license="Apache License Version 2.0",
python_requires=">=3.6, <4",
install_requires=["six", "schematics>=2,<3", "sphinx"],
extras_require={
"test": [
"pytest",
"pytest-mock",
],
},
packages=["autoschematics"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
],
)