-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.04 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lite_sim"
version = "0.0.1a"
description = "A Python library for cryptocurrency forecasting using hashrate and active addresses."
readme = { file = "README_min.md", content-type = "text/markdown" }
authors = [
{ name = "Leonid Shpaner", email = "[email protected]" }
]
requires-python = ">=3.7.4"
dependencies = [
"matplotlib>=3.5.3, <=3.9.2",
"numpy>=1.21.6, <=2.1.2",
"pandas>=1.3.5, <=2.2.3",
"requests>=2.31.0, <=2.32.0",
"seaborn>=0.12.2, <=0.13.2",
"selenium>=3.14.0, <=4.26.1",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
# Correct place for URLs under [project.urls]
[project.urls]
"Author Website" = "https://www.leonshpaner.com"
"Litewallet Website" = "https://litewallet.io/#team"
"GitHub Repository" = "https://github.com/litecoin-foundation/litecoin_forecasting/"
[tool.setuptools.packages.find]
where = ["."]