-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
25 lines (24 loc) · 881 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
import setuptools
setuptools.setup(
name="transible",
version="0.0.2",
author="Sagi (Sergey) Shnaidman",
author_email="[email protected]",
description="Transible package",
long_description="""Transible tool allows you to get
your cloud configuration and infrastructure
into Ansible plabyooks.""",
long_description_content_type="text/markdown",
url="https://github.com/sshnaidm/transible",
project_urls={
"Bug Tracker": "https://github.com/sshnaidm/transible/issues/",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License",
"Operating System :: OS Independent",
],
entry_points={'console_scripts': ['transible = transible:main']},
packages=setuptools.find_packages(),
python_requires=">=3.7",
)