-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 loc) · 905 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
26
27
from setuptools import find_packages, setup
setup(
name='classify',
version='0.5.0',
description='Generate concrete Class documentation for Python Classes.',
long_description=open('README.rst').read(),
author='George Hickman',
author_email='[email protected]',
url='http://github.com/ghickman/classify',
license='MIT',
packages=find_packages(),
entry_points={'console_scripts': ['classify=classify.main:run']},
install_requires=['jinja2>=2.7'],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Documentation',
],
)