-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
31 lines (29 loc) · 858 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
[metadata]
name = uroboros
version = attr: uroboros.version
author = Shoma Kokuryo
author_email = [email protected]
description = Simple framework for building scalable CLI tool
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pddg/uroboros
license_file = LICENSE
classifier =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = False
include_package_data = True
python_requires = >=3.5
entry_points = file: entry_points.cfg
packages = find:
[options.packages.find]
exclude =
tests
examples