forked from rivassec/ef-open
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (46 loc) · 1.25 KB
/
setup.py
File metadata and controls
52 lines (46 loc) · 1.25 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
44
45
46
47
48
49
50
51
52
#!/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',
'click',
'PyYAML',
'cfn-lint',
'yamllint'
],
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='ops@ellation.com',
description='CloudFormation Tools by Ellation',
long_description=readme(),
long_description_content_type='text/markdown'
)