-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
48 lines (43 loc) · 1.29 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
[metadata]
name = ds_pycontain
# do not change version by hand: use bump_version.sh
version = file: src/ds_pycontain/VERSION
description = deepsense.ai wrapper around docker python API
long_description = file: DESCRIPTION.rst
author = deepsense.ai
author_email = [email protected]
license = MIT License (MIT)
license_files = LICENSE
project_urls =
"Homepage" = https://deepsense-ai.github.io/ds-pycontain/
"Source Code" = https://github.com/deepsense-ai/ds-pycontain/
"Bug Tracker" = https://github.com/deepsense-ai/ds-pycontain/issues
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
package_dir=
=src
packages=find:
zip_safe = True
platforms = any
include_package_data = True
python_requires = >=3.8
install_requires =
docker>=6.1.3
[options.packages.find]
where=src
[bdist_wheel]
universal = 1
[aliases]
# Alias `setup.py test` to `setup.py pytest`
test = pytest