-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (33 loc) · 1.06 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='automatix',
version='1.16.1',
description='Automation wrapper for bash and python commands',
keywords=['bash', 'shell', 'command', 'automation', 'process', 'wrapper', 'devops', 'system administration'],
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/seibert-media/automatix',
author='Johannes Paul, //SEIBERT/MEDIA GmbH',
author_email='[email protected]',
license='MIT',
python_requires='>=3.8',
install_requires=[
'pyyaml>=5.1',
],
extras_require={
'tests': ['cython<3.0.0', 'pytest', 'pytest-docker-compose'],
'bash completion': ['argcomplete'],
},
packages=find_packages(),
entry_points={
'console_scripts': [
'automatix=automatix:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
)