-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.03 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
from setuptools import setup
setup(
name="django-ultracache-twisted",
version="0.0.3",
url="http://github.com/praekelt/django-ultracache-twisted",
license="BSD",
description="Companion app to django-ultracache that enables proxy invalidation",
long_description=open("README.rst", "r").read(),
author="Praekelt Consulting",
author_email="dev@praekelt.com",
packages=[
"purge",
"twisted.plugins",
],
package_data={
"twisted.plugins": ["twisted/plugins/purge_plugin.py"],
},
include_package_data=True,
install_requires=[
"twisted",
"PyYAML",
"requests",
"treq",
"pika>=0.11.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
],
)