-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
32 lines (30 loc) · 983 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
[metadata]
name = pytag
version = 0.0.1
author = Hussein Sarea
author_email = [email protected]
description = A small example package
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Ho011/pytag
project_urls =
Bug Tracker = https://github.com/Ho011/pytag/issues
classifiers =
Programming Language :: Python :: 3
License :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= .
package_data =
./lib
./tests
packages = find:
[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
# 3. If your code will not run unchanged on both Python 2 and 3, you will
# need to generate separate wheels for each Python version that you
# support. Removing this line (or setting universal to 0) will prevent
# bdist_wheel from trying to make a universal wheel. For more see:
# https://packaging.python.org/tutorials/distributing-packages/#wheels
universal=0