-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (30 loc) · 761 Bytes
/
setup.py
File metadata and controls
37 lines (30 loc) · 761 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
from setuptools import setup, find_packages
VERSION='0.1.0'
long_description="""
Hurd is a CI/CD tool for pinning microservices under a unified platform.
"""
packages=[
'hurd',
]
install_requires=[
'click',
'pygit2',
'pyyaml',
'tabulate',
]
def main():
setup_info = dict(
name='hurd',
version=VERSION,
url="https://github.com/pi-victor/hurd",
author='Victor Palade <victor@cloudflavor.io>',
description='A microservice platform tool for CI/CD pipelines',
long_description=long_description,
license='Apache-2.0',
packages=packages,
install_requires=install_requires,
zip_safe=False,
)
setup(**setup_info)
if __name__ == '__main__':
main()