-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
69 lines (61 loc) · 2.03 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
69
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest', ]
requirements = ['Click<8',
'pathlib2; python_version < "3.4"',
'backports.tempfile; python_version < "3.2"',
'future-fstrings; python_version < "3.6"',
'configparser; python_version < "3"',
]
extras_require = {
'dev': ['bumpversion==0.5.3',
'wheel==0.30.0',
'tox==2.9.1',
'coverage==4.5.1',
'twine==1.10.0',
'ipython',
],
'test': test_requirements
}
setup(
author="Nikolaos Ves",
author_email='vesnikos@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Users',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
# 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description="Python Boilerplate contains all the boilerplate you need to create a Python package.",
entry_points={
'console_scripts': [
'wpgpDownload=wpgpDownload.cli:wpgp_download',
],
},
install_requires=requirements,
license="GNU General Public License v3",
long_description=readme + '\n\n' + history,
keywords='wpgpDownload',
name='wpgpDownload',
package_dir={'.': 'wpgpDownload'},
packages=find_packages(),
setup_requires=setup_requirements,
extras_require=extras_require,
test_suite='pytest',
tests_require=test_requirements,
url='https://github.com/wpgp/wpgpDownloadPy',
version='0.2.1',
zip_safe=False,
include_package_data=True
)