-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (28 loc) · 873 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·34 lines (28 loc) · 873 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
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from setuptools import setup, find_packages
import deploy4s
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="deploy4s",
version=deploy4s.__version__,
packages=find_packages(exclude=["test*"]),
install_requires=["PyYAML"],
zip_safe=False,
url="https://github.com/meanstrong/deploy4s",
description="A deploy tools for CodeDeploy",
long_description=readme,
long_description_content_type="text/markdown",
author="pengmingqiang",
author_email="rockypengchina@outlook.com",
maintainer="pengmingqiang",
maintainer_email="rockypengchina@outlook.com",
platforms=['any'],
license="Apache 2.0",
entry_points={
'console_scripts': [
'deploycli = deploy4s.cli:main',
]
},
)