-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 954 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
35
36
from setuptools import setup, find_packages
from stolos import VERSION
setup(
name="stolosctl",
version=VERSION,
author="SourceLair PC",
url="https://www.sourcelair.com/",
packages=find_packages(),
include_package_data=True,
install_requires=[
"Click >= 6.0",
"PyYAML >= 3.11",
"tabulate >= 0.7.5",
"requests >= 2.11.0",
"six",
],
extras_require={
"security": ["requests[security] >= 2.11.0"],
"compose": ["docker-compose >= 1.7.0"],
},
entry_points="""
[console_scripts]
stolos=stolos.cli:cli
stolosctl=stolos.cli:cli
""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
)