-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 1.76 KB
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
49
50
51
52
53
54
55
56
57
58
[project]
name = "mightypy" # Required
dynamic = ["version"]
description = "This package initially started with the idea of expanding mightiness of python with expermenting on data structures and machine learning algorithms"
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["sample", "setuptools", "development"] # Optional
authors = [
{ name = "Nishant Baheti", email = "nishantbaheti.it19@gmail.com" }, # Optional
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology"
]
dependencies = [
"numpy==2.2.5",
"pandas==2.2.3",
"matplotlib==3.10.1",
"tqdm==4.67.1",
"tokkit==0.0.5",
"torch==2.6.0",
"requests==2.32.3",
"pyYaml"
]
[project.optional-dependencies] # Optional
dev = [
"mightypy"
]
test = ["pytest>=7.4.3", "pytest-cov>=4.1.0"]
# List URLs that are relevant to your project
[project.urls] # Optional
"Homepage" = "https://github.com/nishantbaheti/mightypy"
"Bug Reports" = "https://github.com/nishantbaheti/mightypy/issues"
"Source" = "https://github.com/nishantbaheti/mightypy/"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"
[tool.setuptools.packages.find]
where = ["src"]