-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 974 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 974 Bytes
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
from setuptools import setup
from code_spy._version import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="code-spy",
version=__version__,
description="Watches for file changes & runs tasks against your Python code.",
packages=["code_spy", "code_spy.tasks"],
py_modules=["code_spy"],
install_requires=[
"watchdog",
"colorama",
"mypy",
"pylint",
"pytest",
"black",
],
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/joegasewicz/dev-runner",
author="Joe Gasewicz",
author_email="contact@josef.digital",
)