forked from sio/cirrus-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (48 loc) · 1.46 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
VERSION='1.0.1'
from setuptools import setup, find_packages
with open("README.md") as readme:
long_description = readme.read()
setup(
name='cirrus-run',
version=VERSION,
description='Command line tool to execute jobs in Cirrus CI',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/sio/cirrus-run',
download_url='https://github.com/sio/cirrus-run/archive/v{}.tar.gz'.format(VERSION),
author='Vitaly Potyarkin',
author_email='sio.wtf@gmail.com',
license='Apache-2.0',
platforms='any',
entry_points={
'console_scripts': [
'cirrus-run=cirrus_run.cli:main',
],
},
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=[
'Jinja2',
'requests',
],
extras_require={ },
python_requires='>=3.4',
zip_safe=True,
keywords=[
'api',
'ci',
'cirrus-ci',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development',
],
)