-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
51 lines (45 loc) · 927 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
40
41
42
43
44
45
46
47
48
49
50
51
[metadata]
name = pkg-example
version = 0.1b1
license = MIT
license_files = LICENSE
url = https://github.com/cdt-data-science/pkg-example
author = James Owers
author_email = [email protected]
keywords = template python-packaging best-practice
description = An example python package as a starter for good research code.
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
License :: MIT
Programming Language :: Python :: 3
[options]
zip_safe = False
include_package_data = True
install_requires =
black
fire
ipython
pylint
pytest
setup_requires =
pytest-runner
tests_require =
pytest
packages = find:
package_dir =
=src
scripts =
scripts/calc
[options.extras_require]
dev =
twine
[options.packages.find]
where = src
[bdist_wheel]
universal = 0
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
pythonfiles = test_*.py