-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (59 loc) · 1.61 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
62
63
64
65
66
67
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from setuptools.command.install import install
from cli.version import version
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Topic :: Office/Business',
'Topic :: Software Development :: Build Tools',
]
keywords = [
'asyncy',
'devops',
'devtools',
'microservices',
'orchestration',
'serverless',
'storyscript',
]
requirements = [
'asyncio==3.4.3',
'click-alias==0.1.1a1',
'click-help-colors==0.5',
'click-spinner==0.1.8',
'click==7.0',
'emoji==0.5.0',
'prompt-toolkit==2.0.3',
'Pygments==2.2.0',
'raven==6.9.0',
'requests==2.20.0',
'storyscript==0.8.3',
'texttable==1.4.0',
'pyyaml==3.13',
'pytz==2018.5'
]
setup(name='asyncy',
version=version,
description='Asyncy CLI',
long_description='',
classifiers=classifiers,
download_url='https://github.com/asyncy/cli/archive/master.zip',
keywords=' '.join(keywords),
author='Asyncy',
author_email='[email protected]',
url='http://docs.asyncy.com/cli',
license='MIT',
packages=find_packages(exclude=['scripts', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=requirements,
extras_require={},
entry_points={
'console_scripts': ['asyncy=cli.main:cli']
})