-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.18 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
39
from setuptools import *
description = 'Python based command line interface tool for generating HTML content from RAML documentation.'
setup(
name='ramldocgen',
version='1.0.0',
description=description,
long_description=description,
url='https://github.com/baliame/ramldocgen',
author='Baliame',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
'Topic :: Utilities',
],
keywords='raml api documentation generator',
packages=find_packages(),
install_requires=[
"pyraml-parser",
"click"
],
entry_points={
'console_scripts': [
'ramldocgen=ramldocgen.ramldocgen:cli',
],
}
)