-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (39 loc) · 1.16 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gs_api_client',
version='2.2.1',
description='Official Python idiomatic client for gridscale services',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/gridscale/gridscale_api_client_python',
author='Thomas Wiebe',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='API Client',
package_dir={},
packages=find_packages(exclude=['dist', 'examples']),
install_requires=[
"urllib3 >= 1.15",
"six >= 1.10",
"certifi",
"python-dateutil",
],
extras_require={},
package_data={},
data_files=[],
entry_points={},
scripts=[]
)