-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
59 lines (54 loc) · 1.4 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
[metadata]
name = tom-registration
description = Reusable TOMToolkit app to support multiple user registration flows.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/TOMToolkit/tom_registration
author = TOM Toolkit Project
author_email = [email protected], [email protected]
license = GPL-3.0 License
classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.1
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
keywords =
tomtoolkit
astronomy
astrophysics
cosmology
science
[options]
setup_requires =
setuptools_scm
wheel
install_requires =
tomtoolkit >= 2.6.0a1
include_package_data = true
packages = find:
[options.extras_require]
test =
factory_boy ~= 3.2
pytest >= 3.0.3
[aliases]
test = pytest
[flake8]
exclude =
setup.py,
__pycache__,
.eggs/,
.git/,
build/,
doc/
per-file-ignores =
__init__.py:F401