-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (67 loc) · 1.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = [
"setuptools>=61.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "PythonStarterPackage"
version = "0.4.4"
authors = [
{ name = "ArcticTechnology", email = "arctic.technology.mail@gmail.com" },
]
description = "Python starter package, a template for creating your own python packages."
keywords = [
"starter",
"package",
"template",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.8"
dependencies = [
"requests>=2.27.1",
]
[project.license]
text = "MIT"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/ArcticTechnology/PythonStarterPackage"
[project.scripts]
pythonstarterpackage = "pythonstarterpackage.main:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = [
"src",
]
namespaces = false
[tool.setuptools.package-data]
pythonstarterpackage = [
"data/*.json",
]
[tool.setuptools.data-files]
"pythonstarterpackage/config" = [
"config/config.json",
]