forked from djungelorm/sphinx-csharp
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
25 lines (24 loc) · 853 Bytes
/
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
from setuptools import setup
setup(
name = 'sphinx-csharp',
version = '0.1.13',
author = 'djungelorm',
author_email = 'djungelorm@users.noreply.github.com',
packages = ['sphinx_csharp'],
url = 'https://github.com/djungelorm/sphinx-csharp',
license = 'MIT',
description = 'C# domain for Sphinx',
install_requires = ['Sphinx>=1.6'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Topic :: Documentation :: Sphinx'
]
)