forked from kushaldas/autocloud
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 752 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 752 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
requires = [
'redis',
'retask',
'fedmsg',
]
setup(
name='autocloud',
version='0.4',
description='',
author='',
author_email='',
url='https://github.com/kushaldas/autocloud',
install_requires=requires,
packages=['autocloud', 'autocloud.web', 'autocloud.utils'],
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",
],
},
)