-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 899 Bytes
/
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
"""Install packages as defined in this file into the Python environment."""
from setuptools import setup, find_packages
# The version of this tool is based on the following steps:
# https://packaging.python.org/guides/single-sourcing-package-version/
VERSION = {}
with open("./auto_create_directories/__init__.py") as fp:
# pylint: disable=W0122
exec(fp.read(), VERSION)
setup(
name="auto_create_directories",
author="Martin Trapp",
author_email="[email protected]",
description="A simple utility to automatically create and manage required directories.",
version=VERSION.get("__version__", "0.0.0"),
packages=find_packages(where=".", exclude=["tests"]),
install_requires=[
"setuptools>=45.0",
],
classifiers=[
"Programming Language :: Python :: 3.0",
"Topic :: Utilities",
"Development Status :: 3 - Alpha",
],
)