-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
43 lines (39 loc) · 994 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
[metadata]
name = ontology
version = file: src/version.txt
author = Grant Moore
author_email = [email protected]
description = a simple, configurable implementation of the LPC spec
long_description = file: README.md
long_description_content_type = text/markdown
license = GNU GPL v3
license_files =
LICENSE
platform = any
keywords = game engine, 2D
classifers =
Programming Language :: Python :: 3
License:: GNU GPL v3
Operating System :: OS Independent
project_urls =
Documentation = https://chinchalinchin.github.io/ontology/
Source = https://github.com/chinchalinchin/ontology
[options]
python_requires = >= 3.8
package_dir =
=src
packages = find_namespace:
install_requires =
munch >= 2.5.0
PySide6 >= 6.2.0
Pillow-SIMD >= 9.0.0.post1
pynput >= 1.7.6
PyYAML >= 6.0
include_package_data = True
[options.entry_points]
console_scripts =
onta = onta.process:entrypoint
[options.packages.find]
where = src
exclude =
tests*