-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.07 KB
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cpm"
version = "0.1.0"
description = "Crash prediction modeling library"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords=["safety", "data", "analysis", "highway", "roadway", "hsm", "prediction", "statistics"]
authors = [
{name = "Tariq Shihadah", email = "tariq.shihadah@gmail.com"},
{name = "Mahdi Rajabi", email = ""},
{name = "Kim Kolody", email = ""}
]
dependencies = [
"numpy",
"matplotlib",
"pandas>=1.1",
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dynamic = ["readme"]
[project.urls]
repository = "https://github.com/tariqshihadah/cpm"
[tool.setuptools.packages.find]
include = ["cpm*"]
exclude = ["cpm.tests*"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}