-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (38 loc) · 1.2 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
[metadata]
name = sio3pack
version = attr: sio3pack.__version__
author = Tomasz Kwiatkowski, Mateusz Masiarz, Jakub Rożek, Stanisław Struzik
maintainer = Tomasz Kwiatkowski, Mateusz Masiarz, Jakub Rożek, Stanisław Struzik
description = Library for interacting with packages
long_description = file: README.md
long_description_content_type = text/markdown
project_urls =
Bug Tracker = https://github.com/sio2project/SIO3Pack/issues
Homepage = https://github.com/sio2project/SIO3Pack
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
[options]
packages = find_namespace:
packages_dir = src
include_package_data = True
python_requires = >=3.9
install_requires =
PyYAML
[options.packages.find]
where = src
[options.extras_require]
tests =
pytest
pytest-cov
pytest-xdist
django_tests =
pytest-django
django =
django
[tool:pytest]
testpaths =
tests