-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
44 lines (37 loc) · 964 Bytes
/
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
[metadata]
name = EVApy
version = attr: EVApy.VERSION
author = Kilian Douarinou
author_email = kilian.douarinou41@gmail.com
url = https://github.com/LeGeRyChEeSe/EVApy
description = EVA API Python
long_description = file: README.md, CHANGELOG, LICENSE
long_description_content_type = text/markdown
keywords = EVA 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]
[options.package_data]
* = *.rst
[options.entry_points]
console_scripts =
executable-name = EVA.module:function
[options.packages.find]
where = src
exclude =
*.python-version
*__pycache__
tests