-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.04 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
from setuptools import setup
import pyconfigurationmanager
setup(
name=pyconfigurationmanager.__name__,
version=pyconfigurationmanager.__version__,
packages=[
pyconfigurationmanager.__name__
],
url='https://github.com/coldsofttech/pyconfigurationmanager',
license='MIT',
author='coldsofttech',
description=pyconfigurationmanager.__description__,
install_requires=[
'pyloggermanager'
],
requires_python=">=3.10",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords=["configuration", "configuration-management", "config-manager"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
)