Skip to content

Commit

Permalink
Add setup.py (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
cehune authored Jul 21, 2024
1 parent d0b568b commit 0420531
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib

here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")

setup(
name="wato_file_auto_expiry",
version="0.0.1",
description="WATCloud project containing scripts to check if directories / files are expired", # Optional

classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
],
package_dir={"": "source"},
packages=find_packages(where="source"),

python_requires=">=3.7, <4",
extras_require={
"dev": ["check-manifest"],
"test": ["coverage"],
}
)

0 comments on commit 0420531

Please sign in to comment.