-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (42 loc) · 1001 Bytes
/
pyproject.toml
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
# pyproject.toml configures a lot of developer tools
# and makes command the package easier to use and install
# in many ways.
[build-system]
requires = ["flit_core >=2,<3"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "transit_simulation"
author = ""
author-email = ""
home-page = "https://github.com/janpisl/Helsinki-public-transport-simulation"
requires = [
# add dependencies to python packages in this array
"loguru",
"geopandas",
"numpy",
"matplotlib",
"flask",
"paho-mqtt",
"geopy",
"assert_types",
"rtree",
]
requires-python = ">=3.5,<4"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
]
description-file = "README.md"
[tool.flit.scripts]
transit_simulation = "transit_simulation.cli:main"
[tool.flit.metadata.requires-extra]
test = [
"vcrpy",
"pytest",
"flake8",
"coverage"
]
doc = [
]