-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
61 lines (59 loc) · 1.76 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from wharfee.__init__ import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
description='Wharfee: a shell for Docker',
author='Irina Truong',
url='http://wharfee.com',
download_url='http://github.com/j-bennet/wharfee',
author_email='i[dot]chernyavska[at]gmail[dot]com',
version=__version__,
license='LICENSE.txt',
install_requires=[
'six>=1.9.0',
'pygments>=2.0.2',
'prompt_toolkit>=1.0.0,<1.1.0',
'docker-py>=1.6.0',
'tabulate>=0.7.5',
'click>=4.0',
'py-pretty>=0.1',
'configobj>=5.0.6',
'pexpect>=3.3',
'fuzzyfinder>=1.0.0',
'ruamel.yaml>=0.15.72',
],
extras_require={
'testing': [
'pytest>=2.7.0',
'mock>=1.0.1',
'tox>=1.9.2'
],
},
entry_points={
'console_scripts': [
'wharfee = wharfee.main:cli',
'wharfee-ops = scripts.optionizer:main',
]
},
packages=['wharfee'],
package_data={'wharfee': ['wharfeerc']},
scripts=[],
name='wharfee',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)