-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.03 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
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hilltop-py"
version = '2.3.1'
description = "Functions to access Hilltop data"
requires-python = ">=3.8"
readme = "README.rst"
license = "Apache-2.0"
authors = [
{ name = "Mike Kittridge", email = "mullenkamp1@gmail.com" },
]
keywords = [
"hilltop",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"orjson",
"pandas",
"pydantic<2",
"requests",
]
[project.optional-dependencies]
dev = [
"spyder-kernels==2.4",
"matplotlib",
"pytest",
]
[project.urls]
Homepage = "https://github.com/mullenkamp/hilltop-py"
[tool.hatch.build.targets.sdist]
include = [
"/hilltoppy",
]