-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (28 loc) · 1.22 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
#!/usr/bin/env python3
from setuptools import setup
if __name__ == '__main__':
setup(name='pyinfra-formulas',
version='0.0.4',
description='Collection of Pyinfra modules for common use cases',
author='Hugo Herter',
author_email='[email protected]',
url='https://github.com/hoh/pyinfra-formulas',
packages=['formulas',
'formulas.nginx',
'formulas.nodejs',
'formulas.consul',
],
package_dir={'formulas': 'formulas'},
package_data={'formulas': ['*/files/*']},
install_requires=['pyinfra', 'hereby'],
license='MIT',
keywords="pyinfra configuration management formulas",
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: System :: Systems Administration',
],
)