-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (27 loc) · 1.01 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
import re
from distutils.core import setup
with open('drone_client/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
setup(
name='drone-client',
version=version,
packages=['drone_client', ],
license='Apache License Version 2.0',
author="Hamed Zaghaghi",
author_email="[email protected]",
description="Drone CI/CD HTTP API Client",
long_description=open('README').read(),
keywords="drone ci cd http api",
url="https://github.com/zaghaghi/drone-client",
package_data={'': ['LICENSE', 'README']},
classifiers=[
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)