-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
60 lines (51 loc) · 1.32 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
[metadata]
name = pylode
version = attr: pylode.__version__
description = Python Implementation of LODE
long_description = file: README.rst
long_description_content_type = text/x-rst
license = Apache-2.0 License
license_files = LICENSE
url = https://github.com/ceriottm/lode
author = attr: pylode.__author__
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: Apache-2.0 License
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Chemistry
Topic :: Scientific/Engineering :: Physics
keywords =
LODE
ML
python_requires = >=3.6
project_urls =
Bug Reports = https://github.com/ceriottm/lode/issues
Source = https://github.com/ceriottm/lode
[options]
package_dir=
=src
packages = find:
install_requires =
ase
numpy
scipy
[options.packages.find]
where=src
[options.extras_require]
progressbar =
tqdm
test =
nbval
pytest
[bdist_wheel]
universal=1