-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
87 lines (78 loc) · 3.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# See: https://setuptools.readthedocs.io/en/latest/setuptools.html#metadata
[metadata]
name = openexchangerate
provides = openexchangerate
description = OpenExchangeRates API client for Python 3.7+.
url = https://github.com/juancarlospaco/openexchangerate#openexchangerate
download_url = https://github.com/juancarlospaco/openexchangerate#openexchangerate
author = Juan Carlos
author_email = [email protected]
maintainer = Juan Carlos
maintainer_email = [email protected]
keywords = minimalism, python3, money, Bitcoin, openexchangerate, currencies
license = GPL-3 LGPL-3
platforms = Linux, Darwin, Windows
version = attr: openexchangerate.__version__
project_urls =
Docs = https://github.com/juancarlospaco/openexchangerate/README.md
Bugs = https://github.com/juancarlospaco/openexchangerate/issues
C.I. = https://travis-ci.org/juancarlospaco/openexchangerate
Chat = https://t.me/juancarlospaco
# license_file = LICENSE # Commented out to reduce package size.
# long_description = file: README.md # Commented out to reduce package size.
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Development Status :: 6 - Mature
Environment :: Console
Environment :: No Input/Output (Daemon)
Environment :: Other Environment
Intended Audience :: Developers
Intended Audience :: System Administrators
Intended Audience :: Other Audience
Natural Language :: English
License :: OSI Approved :: GNU General Public License (GPL)
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Operating System :: MacOS :: MacOS X
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = True
include_package_data = True
python_requires = >=3.6
tests_require = isort ; prospector ; pre-commit ; pre-commit-hooks
install_requires =
setup_requires =
[bdist_wheel]
universal = 1
python-tag = py36
[install_lib]
compile = 0
optimize = 2
[bdist_egg]
exclude-source-files = true
# [options.package_data]
# * = *.pxd, *.pyx, *.json, *.txt
# [options.exclude_package_data]
# ;* = *.c, *.so, *.js
# [options.entry_points]
# console_scripts =
# foo = my_package.some_module:main_func
# bar = other_module:some_func
# gui_scripts =
# baz = my_package_gui:start_func
# [options.packages.find]
# where = .
# include = *.py, *.pyw
# exclude = *.c, *.so, *.js, *.tests, *.tests.*, tests.*, tests