forked from wickman/compactor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 655 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (25 loc) · 655 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
import os
from setuptools import setup
__version__ = '0.3.0'
with open(os.path.join(os.path.dirname(__file__), 'CHANGES.rst')) as fp:
LONG_DESCRIPTION = fp.read()
setup(
name='compactor',
version=__version__,
description='Pure python implementation of libprocess actors',
long_description=LONG_DESCRIPTION,
url='http://github.com/wickman/compactor',
author='Brian Wickman',
author_email='wickman@gmail.com',
license='Apache License 2.0',
packages=['compactor'],
install_requires=[
'trollius',
'tornado==4.1',
'twitter.common.lang',
],
extras_require={
'pb': ['protobuf>=2.6.1,<2.7'],
},
zip_safe=True,
)