-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.12 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.12 KB
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
40
41
42
43
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='Zeus-CI',
version='0.0.1',
packages=find_packages(),
url='https://github.com/chestm007/lcircle',
license='GPL-2.0',
author='Max Chesterfield',
author_email='chestm007@hotmail.com',
maintainer='Max Chesterfield',
maintainer_email='chestm007@hotmail.com',
description='python CI server that tries to not suck',
long_description=readme,
install_requires=[
'pyyaml',
'flask',
'werkzeug==3.0.6',
'sqlalchemy',
'pygithub',
'faust',
'rpyc',
'github-webhook'
],
extras_require={
'github_status_reporting': ['github'],
'github_webhook_listener': ['github-webhook'],
'resource_allocator': ['rpyc'],
},
entry_points="""
[console_scripts]
zeus-ci-buildcoordinator=zeus_ci.build_coordinator:main
zeus-ci-listener=zeus_ci.listeners:main
zeus-ci-resource-allocator=zeus_ci.resource_allocator:main
zeus-cli=zeus_ci.cli:main
""",
)