-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
68 lines (62 loc) · 2.02 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
68
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
import os
from setuptools import find_packages, setup
import gswrap_meta
here = os.path.abspath(os.path.dirname(__file__)) # pylint: disable=invalid-name
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as fid:
long_description = fid.read().strip() # pylint: disable=invalid-name
setup(
name=gswrap_meta.__title__,
version=gswrap_meta.__version__,
description=gswrap_meta.__description__,
long_description=long_description,
url=gswrap_meta.__url__,
author=gswrap_meta.__author__,
author_email=gswrap_meta.__author_email__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
license='License :: OSI Approved :: MIT License',
keywords='gsutil google cloud storage wrap',
packages=find_packages(exclude=['tests', 'benchmark']),
install_requires=[
# yapf: disable
'typing-extensions>=3.7.2',
'icontract>=2.0.2,<3',
'google-cloud-storage>=1.14.0,<2'
# yapf: enable
],
extras_require={
'dev': [
# yapf: disable
'mypy==0.670',
'pylint==2.3.1',
'yapf==0.26.0',
'tox>=3.7.0',
'coverage>=4.5.2,<5',
'pydocstyle>=3.0.0,<4',
'pyicontract-lint>=2.0.0,<3',
'docutils>=0.14,<1',
'isort>=4.3.4,<5',
'pygments>=2.3.1,<3',
'prettytable>=0.7.2, <1',
'temppathlib>=1.0.3,<2',
'gsutilwrap>=1.1.2,<2',
'twine>=1.12.1,<2',
'setuptools>=40.8.0,<41',
'wheel>=0.33.0,<1'
# yapf: enable
]
},
py_modules=['gswrap', 'gswrap_meta'],
package_data={
"gswrap": ["py.typed"],
'.': ['LICENSE', 'README.rst']
})