-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 930 Bytes
/
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
from setuptools import setup, find_packages
REQUIRES = (
'attrs>=17.2.0'
)
setup(
name='terra-py',
description='generate terraform json',
version='0.0.0',
packages=find_packages(),
install_requires=REQUIRES,
author='dmr',
author_email='[email protected]',
license='WTFPL',
keywords=['terraform', 'hcl'],
entry_points={
'console_scripts': [
'terrapy=terrapy.wrap:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: DFSG approved',
'License :: Freely Distributable',
'License :: Public Domain',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Code Generators',
'Topic :: System :: Systems Administration',
]
)