-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetup.py
executable file
·37 lines (33 loc) · 1.17 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
36
37
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
requirements = [
"urwid",
"urwidtrees",
"docker-py"
]
setup(
name='sen',
version='0.5.0',
description="Terminal User Interface for Docker Engine",
author='Tomas Tomecek',
author_email='[email protected]',
url="https://github.com/TomasTomecek/sen/",
license="MIT",
entry_points={
'console_scripts': ['sen=sen.cli:main'],
},
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=requirements,
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Monitoring',
],
)