-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 834 Bytes
/
setup.py
File metadata and controls
38 lines (33 loc) · 834 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import pkg_resources
from setuptools import find_packages
from setuptools import setup
install_requires = [
'docopt==0.6.2',
'Twisted==16.6.0',
'PyYAML==3.12',
'pytz==2016.10',
'confluent-kafka==0.11.5',
'ujson==1.35',
'docopt_utils==0.0.0'
]
dependency_links = [
'https://github.com/ucalgary/docopt-utils/archive/master.zip#egg=docopt_utils-0.0.0',
]
setup(
name='ps_stream',
description='Process PeopleSoft sync messages into logical streams',
author='King Chung Huang',
packages=find_packages(),
package_data={
'': ['*.yml']
},
install_requires=install_requires,
dependency_links=dependency_links,
entry_points="""
[console_scripts]
ps-stream=ps_stream.cli.main:main
""",
zip_safe=True
)