-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
130 lines (103 loc) · 4.21 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# https://packaging.python.org/en/latest/distributing.html
# https://github.com/pypa/sampleproject
from setuptools import setup, find_packages
from codecs import open
from os import path, system
import sys, re
here = path.abspath(path.dirname(__file__))
try:
system('''pandoc -f markdown-raw_html -o '%(dest_rst)s' '%(src_md)s' ''' % {
'dest_rst': path.join(here, 'README.rst'),
'src_md': path.join(here, 'README.md'),
})
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# strip out any HTML comment|tag
long_description = re.sub(r'<!--.*?-->', '', long_description,
flags=re.DOTALL|re.MULTILINE)
long_description = re.sub(r'<img.*?src=.*?>', '', long_description,
flags=re.DOTALL|re.MULTILINE)
with open(path.join(here, 'README.rst'), 'w', encoding='utf-8') as f:
f.write(long_description)
except:
print("Generation of the documentation failed. " + \
"Do you have 'pandoc' installed?")
long_description = __doc__
# load __version__, __doc__, _author, _license and _url
exec(open(path.join(here, 'byexample', '__init__.py')).read())
# the following are the required dependencies
# without them, we cannot run byexample
# NOTE: keep this list in sync with byexample/cmdline.py
required_deps=[
'pexpect>=4,<5', # pexpect 4.x.x required
'appdirs>=1.4.3,<2', # appdirs 1.4.x (x >= 3) required
'termscraper>=0.10,<0.11', # termscraper 0.10.x
'bracex>=2.1.0,<3', # bracex 2.x required (with x >= 1)
'importlib-resources>=5.5.0,<6.0.0', # importlib-resources 5.y.x (y >= 5)
]
# these, on the other hand, are optional nice to have
# dependencies. we'll install them by default but if they
# are not present, byexample will run normally.
# NOTE: keep this list in sync with byexample/cmdline.py
nice_to_have_deps=[
'tqdm>=4,<5', # tqdm 4.x.x required
'pygments>=2,<3', # pygments 2.x.x required
'argcomplete>=2.0.0,<2.1.0' # argcomplete 2.x.x required
]
# run
# python setup.py install --byexample-minimal
# to install only the required dependencies
if '--byexample-minimal' in sys.argv:
sys.argv.remove('--byexample-minimal')
install_deps = required_deps
else:
install_deps = required_deps + nice_to_have_deps
setup(
name='byexample',
version=__version__,
description=__doc__,
long_description=long_description,
url=_url,
# Author details
author=_author,
author_email='use-github-issues@example.com',
license=_license,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'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',
'Programming Language :: Python :: 3.10',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: JavaScript',
'Programming Language :: Other',
'Programming Language :: Other Scripting Engines',
'Programming Language :: PHP',
'Programming Language :: Ruby',
'Programming Language :: Unix Shell',
],
python_requires='>=3.7',
install_requires=install_deps,
keywords='doctest documentation test testing',
packages=find_packages(),
data_files=[("", ["LICENSE"])],
package_data={'byexample':["modules/gadgets/*", "autocomplete/*"]},
entry_points={
'console_scripts': [
'byexample = byexample.byexample:main',
],
}
)