-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathsetup.cfg
64 lines (58 loc) · 1.49 KB
/
setup.cfg
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
[metadata]
name = birdseye
author = Alex Hall
author_email = alex.mojaki@gmail.com
license = MIT
description = Graphical Python debugger which lets you easily view the values of all evaluated expressions
url = http://github.com/alexmojaki/birdseye
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
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
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development :: Debuggers
[options]
packages = birdseye
install_requires =
Flask
flask-humanize
sqlalchemy
asttokens
littleutils>=0.2
cheap_repr
outdated
cached_property
backports.functools_lru_cache; python_version == "2.7"
setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3
include_package_data = True
tests_require =
bs4
selenium
requests
pytest
numpy>=1.16.5
pandas
test_suite = tests
[options.extras_require]
tests =
bs4
selenium
requests
pytest
numpy>=1.16.5
pandas
[options.entry_points]
console_scripts =
birdseye = birdseye.server:main
[bdist_wheel]
universal=1