-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (35 loc) · 1.1 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
[project]
name = "MercadoBitcoinBalance"
version = '1.4'
description = "Calcula, salva e reporta seu saldo do Mercado Bitcoin"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "Avi Alkalay", email = "avi@unix.sh" },
]
keywords = [
"etl",
"crypto",
"mercadobitcoin"
]
dependencies = [
"pandas",
]
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.scripts]
balancemb = "MercadoBitcoinBalance.__main__:main"
[project.urls]
Homepage = "https://github.com/avibrazil/MercadoBitcoinBalance"
Source = "https://github.com/avibrazil/MercadoBitcoinBalance"
Issues = "https://github.com/avibrazil/MercadoBitcoinBalance/issues/new/choose"
Pypi = "https://pypi.org/project/MercadoBitcoinBalance"
[tool.setuptools.package-dir]
MercadoBitcoinBalance = "src"