-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
33 lines (29 loc) · 779 Bytes
/
setup.cfg
File metadata and controls
33 lines (29 loc) · 779 Bytes
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
[metadata]
name = sailsim
description = A program to simulate sailboats and test sailing algorithms.
author = Tillman Keller, Michael Behrens
author_email = mfbehrens99@gmail.com
version = 0.0.2
url = https://github.com/mfbehrens99/sailsim
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
license = MIT License
license_file = LICENSE.txt
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Education
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
[options]
python_requires = >=3.6
packages = find:
install_requires =
opensimplex >= 0.4
PySide6
[aliases]
test=pytest
# [options.entry_points]
# console_scripts =
# screed = sailsim.gui:main
[flake8]
ignore = E501