forked from sphinx-pyreverse/sphinx-pyreverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (33 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
35
36
37
38
#!/usr/bin/env python
"""
Created on Oct 2, 2012
@author: alendit
"""
import os
from setuptools import setup
def read(fname):
""" Reads a file in from disk and returns its contents """
with open(os.path.join(os.path.dirname(__file__), fname), "r") as file_handle:
return file_handle.read()
setup(
name="sphinx-pyreverse",
version="0.0.13",
author="Dimitri Vorona",
author_email="vorona@in.tum.de",
description=(
"A simple sphinx extension to generate " "UML diagrams with pyreverse"
),
license="GPLv3",
keywords="sphinx extension uml pyreverse",
url="https://github.com/alendit/sphinx-pyreverse",
long_description=read("README.rst"),
packages=["sphinx_pyreverse"],
install_requires=["sphinx", "docutils"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Topic :: Utilities",
],
)