Adds a __repr__ to graph.
[pyutils.git] / pyproject.template
1 [project]
2 name = "pyutils"
3 version = "##VERSION##"
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     "antlr4-python3-runtime",
19     "bitstring",
20     "cloudpickle",
21     "holidays",
22     "kazoo",
23     "overrides",
24     "pytz",
25 ]
26
27 [project.urls]
28 "Homepage" = "https://wannabe.guru.org/pydocs/pyutils/pyutils.html"
29 ## "Bug Tracker" = "https://github.com/pypa/sampleproject/issues"
30
31 [project.optional-dependencies]
32 dev = [
33     "black",
34     "coverage",
35     "flake8",
36     "pylint",
37     "sphinx"
38 ]
39
40 [build-system]
41 requires = ["setuptools"]
42 build-backend = "setuptools.build_meta"
43
44 [tool.setuptools]
45 packages = [
46     "pyutils", "pyutils.collectionz", "pyutils.compress",
47     "pyutils.datetimes", "pyutils.files", "pyutils.parallelize",
48     "pyutils.search", "pyutils.security", "pyutils.typez"
49 ]
50
51 [tool.setuptools.package-dir]
52 pyutils = "src/pyutils"