-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (36 loc) · 947 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
37
38
from setuptools import setup, find_packages
from sykle import __version__
setup(
name='sykle',
version=__version__,
description='Rake like docker-compose coordinator',
author='Type/Code',
author_email='eric@typecode.com',
python_requires='>3.4',
classifier=[
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: Public Domain',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
],
setup_requires=[
'nose>=1.0'
],
install_requires=[
'docopt>=0.6.2,<0.7',
'halo==0.0.28',
'python-dotenv>=0.9.1,<0.10',
'termcolor==1.1.0'
],
test_suite='nose.collector',
packages=find_packages(
exclude=('test',),
),
package_data={'sykle': ['plugins/**/requirements.txt']},
entry_points={
'console_scripts': [
'syk=sykle.cli:main',
]
},
)