-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
67 lines (63 loc) · 1.92 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
65
66
67
[metadata]
name = davos
version = 0.2.3
description = Install and manage Python packages at runtime using the "smuggle" statement.
long_description = file: README.md
long_description_content_type = text/markdown
author = Paxton Fitzpatrick, Jeremy Manning
author_email = [email protected]
url = https://github.com/ContextLab/davos
download_url = https://github.com/ContextLab/davos
license = MIT
license_file = LICENSE
keywords = import install package module automatic davos smuggle pip conda
classifiers =
Development Status :: 5 - Production/Stable
Framework :: IPython
Framework :: Jupyter
Framework :: Jupyter :: JupyterLab
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: MacOS
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python :: 3 :: Only
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 :: Python :: 3.11
Topic :: System :: Archiving :: Packaging
Topic :: System :: Filesystems
Topic :: System :: Installation/Setup
Topic :: Utilities
Typing :: Typed
[options]
python_requires = >=3.6
install_requires =
importlib_metadata;python_version<"3.8"
packaging
setup_requires = setuptools>=42.0.2
packages = find:
include_package_data = true
zip_safe = false
[options.extras_require]
tests =
google-colab
IPython>=7.15;python_version>="3.9"
IPython>=7.3.0;python_version>="3.8"
IPython>=5.5.0
ipykernel>=5.0.0
mypy==1.1.1
pytest==6.2
requests
selenium>=3.141
typing_extensions;python_version<"3.9"
[options.package_data]
* = py.typed, *.pyi
[bdist_wheel]
# not compatible with Python 2.x
universal = 0