-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
56 lines (50 loc) · 1.39 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
from setuptools import setup
import versioneer
def readme():
with open('README.md') as f:
return f.read()
setup(
name='ef-open',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=[
'efopen'
],
install_requires=[
'boto3>=1.17.112',
'click<=7.1.2',
'PyYAML<=5.4.1',
'cfn-lint',
'netaddr==0.8.0',
'requests<=2.25.1',
'tenacity==7.0.0',
'yamllint<=1.25.0',
'python-dateutil==2.8.2'
],
extras_require={
'test': [
'mock',
'pylint',
]
},
entry_points={
'console_scripts': [
'ef-cf=efopen.ef_cf:main',
'ef-cf-diff=efopen.ef_cf_diff:main',
'ef-check-config=efopen.ef_check_config:main',
'ef-generate=efopen.ef_generate:main',
'ef-instanceinit=efopen.ef_instanceinit:main',
'ef-password=efopen.ef_password:main',
'ef-resolve-config=efopen.ef_resolve_config:main',
'ef-version=efopen.ef_version:main'
],
},
url='https://github.com/crunchyroll/ef-open',
license="Apache License 2.0",
author='Ellation, Inc.',
author_email='[email protected]',
description='CloudFormation Tools by Ellation',
long_description=readme(),
long_description_content_type='text/markdown'
)