-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
67 lines (59 loc) · 1.43 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
##########################
# Setup.py Configuration #
##########################
[metadata]
name = ccpncdatabase
version = v0.1
description =
long_description = file: README.md
# URLs associated with the project
url = https://github.com/CCP-NC/ccpnc-database
project_urls =
Bug Tracker = https://github.com/CCP-NC/ccpnc-database/issues
Source Code = https://github.com/CCP-NC/ccpnc-database
# Author information
author =
author_email =
maintainer =
maintainer_email =
# License Information
#license = MIT
#license_file = LICENSE.md
# Search tags
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Chemistry
keywords =
Nuclear Magnetic Resonance
Materials Science
Materials Informatics
# Requirements
[options]
install_requires =
flask>=2.2.5
flask-mail~=0.10.0
flask-cors>=4.0.1
soprano~=0.8
ase~=3.23
jinja2>=3.1.4
markupsafe==2.1.5
pymongo>=3.12.3,<4.0
schema~=0.7
pyyaml>=6.0.1
requests~=2.32
numpy~=1.24
mongomock~=4.1
zip_safe = False
include_package_data = True
python_requires = >=3.8
packages = find:
[options.extras_require]
test =
pytest~=8.2