-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (33 loc) · 941 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
import metadata as m
from setuptools import setup, find_packages
install_requires = [
"redis",
"kombu",
"celery",
]
setup(
name=m.name,
version=m.version,
url=m.project_url,
license=m.license,
platforms=['OS Independent'],
description=m.description,
author=m.author,
author_email=m.author_email,
packages=find_packages(),
install_requires=install_requires,
include_package_data=True, # Accept all data files and directories matched by MANIFEST.in or found in source control.
package_dir={
m.package_name: m.package_name,
},
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)