-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
94 lines (86 loc) · 2.05 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[metadata]
name = mdsea
version = file:VERSION
description = Molecular Dynamics Library
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tpvasconcelos/mdsea
author = Tomas Pereira de Vasconcelos
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
keywords = fluid dynamics, particle, simulation
project_urls =
Documentation = https://github.com/tpvasconcelos/mdsea
Funding = https://donate.pypi.org
Source = https://github.com/tpvasconcelos/mdsea
Tracker = https://github.com/tpvasconcelos/mdsea/issues
[options]
packages = find:
install_requires =
h5py~=3.0.0
numpy~=1.19.0
rich~=9.6.0
scipy~=1.5.0
importlib-metadata~=1.0;python_version < "3.8"
python_requires = >=3.7.1,<4.0
include_package_data = True
[options.entry_points]
console_scripts =
mdsea = mdsea.cli:main
[options.extras_require]
dev =
ipython==7.21.0
pytest==6.2.2
pytest-cov==2.11.1
sphinx==3.5.1
tox==3.22.0
matplotlib =
PyQt5~=5.15.0
matplotlib~=3.4.0
mayavi =
PyQt5~=5.15.0
mayavi~=4.7.0
vapory =
Vapory~=0.1.1
vpython =
Pillow~=8.2.0
vpython~=7.6.0
[bdist_wheel]
universal = True
[bumpversion]
current_version = 0.1.0
commit = True
tag = True
[bumpversion:file:VERSION]
search = {current_version}
replace = {new_version}
[flake8]
exclude =
docs,
.venv,
build,
*.pyi,
.git,
build,
.tox
max-line-length = 120
[isort]
profile = black
src_paths = tpv,tests
combine_as_imports = true
include_trailing_comma = true
known_first_party = tpv
line_length = 79