-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 943 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
[build-system]
requires = ["setuptools>=64.0"] # editable install using setuptool available since v64.0.0
build-backend = "setuptools.build_meta"
[project]
name = "hyclib"
version = "0.1.0"
description = "Commonly used tools across my own personal projects."
readme = "README.md"
requires-python = ">=3.9" # package developed with python v3.9.16
license = {file = "LICENSE"}
authors = [
{name = "Ho Yin Chau"},
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
]
dependencies = [
'numpy',
'matplotlib',
'statsmodels',
'torch',
'tomli',
'h5py',
'pandas',
'tables', # optional dependency for pandas that is needed here
'tqdm',
'mat73',
'platformdirs',
]
[project.urls]
repository = "https://github.com/hchau630/hyclib"
[tool.setuptools]
packages = ["hyclib"]