This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
62 lines (51 loc) · 1.76 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
# Metadata: Information about the package, used by package managers.
[metadata]
name = biosim
# Obtain version and author info from package,
# usually defined in __init__.py
version = 2.2
author = 'Jon Augensen & Lars Øvergård, NMBU'
author_email = '[email protected] / [email protected]'
# Provide description, long version picked up from file.
description = A basic Herbivores and Carnivore simulation
long_description = file: README.md
long_description_content_type = text/markdown
# Homepage for package and specific URLs
url = https://gitlab.com/nmbu.no/emner/inf200/h2020/juneblock/t07_augensen_overgaard/biosim-t07-augensen-overgaard/
# project_urls =
# Bug Tracker = TBS
# License information
license = MIT License
# Classifiers, for options, see https://pypi.org/classifiers/
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 2 - Beta
Environment :: Console
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
# More information about requirements
[options]
# Python version required
python_requires = >=3.8
# Other packages required (eg numpy, pandas, ...)
# Do NOT list packages from the Python Standard Library
# https://docs.python.org/3.9/library/index.html
include_package_data = True
install_requires =
matplotlib
# Which packages to include: tell packaging mechanism to search in src
package_dir =
= src
packages = find:
# Scripts to also include in distribution package
scripts =
examples/check_sim.py
examples/sample_sim.py
# Tell package-finding mechanism where to search
[options.packages.find]
where = src
# Tell our PEP8 checker that we allow 100 character lines
[flake8]
max-line-length = 100