-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
38 lines (34 loc) · 1.06 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
[metadata]
name = resources-example
author = Wim Glenn
author_email = hey@wimglenn.com
version = 0.2
description = An example project demonstrating various ways to access data files in Python package
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = packaging, resources
license = MIT
home_page = https://github.com/wimglenn/resources-example
project_urls =
Issue Tracker = https://github.com/wimglenn/resources-example/issues
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Archiving :: Packaging
Topic :: System :: Systems Administration
Topic :: Utilities
[options]
packages = find:
include_package_data = true
install_requires =
setuptools
importlib_resources
[options.entry_points]
console_scripts =
resources-example = myapp:main
[bdist_wheel]
universal = 1