-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
88 lines (84 loc) · 2.86 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import io
with io.open('README.md', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name='py3-bp',
version='0.0.4',
description=('Ultimate template for new Python 3 projects'),
long_description=readme,
long_description_content_type='text/markdown',
author='Andrey Shpak',
author_email='ashpak@ashpak.ru',
url='https://github.com/insspb/py3-bp',
include_package_data=True,
python_requires='>=3.5',
install_requires=[
'cookiecutter'
],
license='MIT',
license_file='LICENSE',
zip_safe=True,
project_urls={
"Bug Tracker": "https://github.com/insspb/py3-bp/issues",
"Documentation": "https://py3-bp.readthedocs.io",
"Source Code": "https://github.com/insspb/py3-bp",
},
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Framework :: Sphinx',
'Framework :: tox',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Other Audience',
'License :: OSI Approved',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Operating System :: Microsoft :: Windows :: Windows Server 2008',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Documentation',
'Topic :: Education',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Documentation',
'Topic :: Utilities'
],
platforms=[
'Any'
],
keywords=(
'cookiecutter',
'python',
'python3',
'boilerplate',
'boilerplate-template',
'template',
'skeleton',
'scaffolding',
'scaffoldings',
'scaffolding-framework',
'skeleton-template',
'skeleton-application',
'utilities'
),
)