-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (38 loc) · 930 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chances"
dynamic = ["version"]
description = "Chances"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Mikko Kotila", email = "mailme@mikkokotila.com" },
]
maintainers = [
{ name = "Mikko Kotila", email = "mailme@mikkokotila.com" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy",
"requests",
"scipy",
]
[project.urls]
Download = "https://github.com/autonomio/randomizer/"
Homepage = "http://autonom.io"
[tool.hatch.version]
path = "chances/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/chances",
]