-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 901 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
from setuptools import setup, find_packages
setup(
name="grundzeug",
packages=find_packages(exclude=["tests.*", "tests"]),
url="https://grundzeug.nickguletskii.com/",
license="Apache License 2.0",
author="Nick Guletskii",
author_email="nick@nickguletskii.com",
description="Grundzeug Dependency Injection container and configuration management framework",
use_scm_version=True,
setup_requires=["setuptools_scm"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"
],
python_requires='>=3.7',
install_requires=[
"typing-extensions>=3.7.4.1",
]
)