-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
39 lines (34 loc) · 914 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
33
34
35
36
37
38
39
[metadata]
name = elementy
author = Robert Forrest
author_email = [email protected]
description = Interface to data on elements of the periodic table.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Robert-Forrest/elementy
license = BSD 3-Clause License
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
packages = elementy
python_requires = >=3.7
install_requires =
numpy
[options.entry_points]
console_scripts =
# exename = package.module:funcname
[options.extras_require]
dev =
pre-commit
flake8 ==3.9.2
tox ==3.24.3
pytest ==6.2.5
pytest-cov ==2.12.1
[options.package_data]
elementy = py.typed
[flake8]
max-line-length = 79