-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (32 loc) · 976 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
from setuptools import setup
setup(
name='pingpong',
version='0.0.1',
author='James Robert',
author_email='[email protected]',
description=('Django library that makes triggering emails easier'),
long_description=open('README.markdown').read(),
license='MIT',
keywords='django',
install_requires=[
"django",
],
url="https://github.com/Rootbuzz/pingpong",
packages=[
'pingpong',
'pingpong.management',
'pingpong.management.commands',
],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)