-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (36 loc) · 1008 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
import doccito
setup(
name='doccito',
version = doccito.get_version(),
author='Rootbuzz',
author_email='[email protected]',
description=('Send alerts, notifications, and messages based '
'on events in your django application'),
long_description=open('README.markdown').read(),
license='MIT',
keywords='documentation',
url='http://doccito.com',
install_requires=[
"markdown"
],
packages=[
'doccito'
],
include_package_data=True,
entry_points={
'console_scripts':[
'doccito = doccito.__main__:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)