-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
48 lines (43 loc) · 958 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
[metadata]
name = simset
version = 0.0.1
author = Hampus Malmberg
author_email = [email protected]
description = A command line tool for setting up HPC computations.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/hammal/simset
project_urls =
Bug Tracker = https://github.com/hammal/simset/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires = jinja2
include_package_data = True
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
simset = simset.command_line:main
[flake8]
ignore =
E501,
W605,
E203,
F401,
E402,
W503,
BLK100,
E741,
E712,
F811
exclude =
.git,
__pycache__,
max-line-length = 88