-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
37 lines (30 loc) · 858 Bytes
/
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, find_packages
VERSION_NUMBER = '0.1.0'
with open('requirements.txt', 'rb') as handle:
REQUIREMENTS = [
x.decode('utf8') for x in handle.readlines()
]
with open('dev_requirements.txt', 'rb') as handle:
TEST_REQUIREMENTS = [
x.decode('utf8') for x in handle.readlines()
]
setup(
name='apache_beam_example',
version=VERSION_NUMBER,
description="",
long_description=open("README.md").read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Programming Language :: Python",
],
keywords='',
author='Bruno Ripa',
author_email='[email protected]',
url='',
license='GPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS
)