-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (47 loc) · 1.45 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
[metadata]
name = Lespy
version = attr: lespy.__version__
author = Natan Santos
author_email = [email protected]
description = A small and robust micro Python framework for building simple and solid web apps.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: HTTP Servers
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP :: WSGI
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Source = https://github.com/natanfeitosa/lespy/
Tracker = https://github.com/natanfeitosa/lespy/issues/
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.8
[options.package_data]
* = *.md, *.rst
[options.extras_require]
test =
pytest
coverage
[options.packages.find]
exclude =
examples*
tools*
docs*
tests*