Update README with link to local git repo + previous version.
[pyutils.git] / pyproject.toml
1 [project]
2 name = "pyutils"
3 version = "0.0.1b"
4 authors = [
5   { name="Scott Gasch", email="[email protected]" },
6 ]
7 description = "Python Utilities"
8 readme = "README.md"
9 license = { file="LICENSE" }
10 requires-python = ">=3.7"
11 classifiers = [
12     "Development Status :: 3 - Alpha",
13     "Programming Language :: Python :: 3",
14     "License :: OSI Approved :: Apache Software License",
15     "Operating System :: OS Independent",
16 ]
17 dependencies = [
18     "bitstring",
19     "cloudpickle",
20     "holidays",
21     "overrides",
22     "python-dateutil",
23     "pytz",
24 ]
25
26 [project.urls]
27 "Homepage" = "https://wannabe.guru.org/pydocs/pyutils/pyutils.html"
28 ## "Bug Tracker" = "https://github.com/pypa/sampleproject/issues"
29
30 [project.optional-dependencies]
31 dev = [
32     "black",
33     "coverage",
34     "flake8",
35     "pylint",
36     "sphinx"
37 ]
38
39 [build-system]
40 requires = ["setuptools"]
41 build-backend = "setuptools.build_meta"
42
43 [tool.setuptools]
44 packages = [
45     "pyutils", "pyutils.collectionz", "pyutils.compress",
46     "pyutils.datetimez", "pyutils.files", "pyutils.parallelize",
47     "pyutils.search", "pyutils.security", "pyutils.typez"
48 ]
49
50 [tool.setuptools.package-dir]
51 pyutils = "src/pyutils"