-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 922 Bytes
/
setup.py
File metadata and controls
39 lines (33 loc) · 922 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
32
33
34
35
36
37
38
39
"""
setup.py
"""
from setuptools import setup, find_packages
def load(filename):
"""
utility requirements.txt loading
"""
with open(filename) as input_file:
return input_file.read().split('\n'),
setup(
name='flume',
version="0.5.0",
author='Rodney Gomes',
author_email='rodneygomes@gmail.com',
url='',
setup_requires=['pytest-runner==2.11.1'],
install_requires=load('requirements.txt'),
tests_require=load('test-requirements.txt'),
test_suite='test.unit',
keywords=[''],
py_modules=['flume'],
packages=find_packages(exclude=['test']),
include_package_data=True,
entry_points={
'console_scripts': [
'flume=flume.cli:main'
]
},
license='Apache 2.0 License',
description='flume (pronounced: floom) is a stream processing framework',
long_description='README: http://github.com/rlgomes/flume',
)