-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 764 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 764 Bytes
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
from setuptools import setup, find_packages
requires = [
'redis',
'retask',
'fedmsg',
]
setup(
name='autocloud',
version='0.8.0',
description='',
author='Kushal Das',
author_email='kushaldas@gmail.com',
url='https://github.com/kushaldas/autocloud',
install_requires=requires,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Programming Language :: Python',
],
entry_points={
'moksha.consumer': [
"autocloud_consumer = autocloud.consumer:AutoCloudConsumer",
],
},
)