-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (32 loc) · 918 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 debian import changelog
from setuptools import find_packages, setup
__version__ = str(changelog.Changelog(open('debian/changelog')).version)
__desc__ = 'Orchestrator next-gen prototype'
setup(
name='cocaine-orca',
version=__version__,
packages=find_packages('src'),
url='https://github.com/karitra/burlak',
license='Copyleft',
author='Alex Karev',
author_email='[email protected]',
install_requires=[
# 'cocaine',
'tornado>=4.3,<5.0',
'click>=5.0',
'PyYAML>=3.0',
'cerberus>=0.9.0',
'raven>=5.0.0',
'six',
],
namespace_packages=['cocaine'],
setup_requires=[
'pytest-runner',
'python-debian',
'setuptools_scm<=1.17'],
tests_require=['pytest'],
package_dir={'': 'src'},
description=__desc__,
package_data={'': ["debian/changelog"]},
include_package_data=True
)