-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
63 lines (56 loc) · 1.39 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
[metadata]
name = lanplaypy
version = attr: lanplaypy.VERSION
author = Kilian Douarinou
author_email = [email protected]
url = https://github.com/LeGeRyChEeSe/lanplaypy
description = LAN-PLAY API Python
long_description = file: README.md, CHANGELOG, LICENSE
long_description_content_type = text/markdown
keywords = LAN-PLAY API Python GraphQL
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.9
[options]
zip_safe = False
include_package_data = True
package_dir=
=src
packages = find:
python_requires = >=3.9
install_requires =
gql[aiohttp]
requests
[options.packages.find]
where = src
exclude =
*.python-version
*__pycache__
tests
changelog.d
[options.extras_require]
dev =
setuptools-changelog
build
[changelog]
changelog_fragments_path = changelog.d
major_changes_types =
epic = Epic Changes
breaking = Breaking Changes
removal = Breaking Changes
minor_changes_types =
security = Security Fixes
deprecation = Deprecations
feature = New Features
patch_changes_types =
bug = Bug Fixes
bugfix = Bug Fixes
improvement = Improvements
build = Build
doc = Documentation
test = Tests Suite
misc = Miscellaneous