forked from dgbowl/tomato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (60 loc) · 1.68 KB
/
setup.py
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
import setuptools
import versioneer
version = versioneer.get_version()
cmdclass = versioneer.get_cmdclass()
with open("README.md", "r", encoding="utf-8") as infile:
readme = infile.read()
packagedir = "src"
setuptools.setup(
name="tomato",
version=version,
cmdclass=cmdclass,
author="Peter Kraus",
author_email="peter@tondon.de",
description="au-tomation without pain!",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/dgbowl/tomato",
project_urls={
"Bug Tracker": "https://github.com/dgbowl/tomato/issues",
},
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
package_dir={"": packagedir},
packages=setuptools.find_packages(where=packagedir),
include_package_data=True,
python_requires=">=3.9",
install_requires=[
"appdirs>=1.4.0",
"toml",
"pyyaml",
"psutil",
"yadg==4.2.4",
"dgbowl_schemas>=108",
"filelock",
"pyzmq",
],
extras_require={
"testing": [
"pytest",
],
"docs": [
"sphinx==4.5.0",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
"autodoc-pydantic",
],
},
entry_points={
"console_scripts": [
"tomato=tomato:run_tomato",
"ketchup=tomato:run_ketchup",
"tomato_job=tomato.drivers:tomato_job",
"tomato-daemon=tomato.daemon:run_daemon",
]
},
)