2024-06-14 17:54:40 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
with open("requirements.txt", "r") as fh:
|
|
|
|
required = fh.read().splitlines()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="configurator",
|
2024-06-14 18:34:56 +00:00
|
|
|
version="0.1.1",
|
2024-06-14 17:54:40 +00:00
|
|
|
author="agathanonymous",
|
|
|
|
author_email="agatha@juggalol.com",
|
2024-06-14 18:34:56 +00:00
|
|
|
description="A Python configuration management package",
|
2024-06-14 17:54:40 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2024-06-14 18:34:56 +00:00
|
|
|
url="https://git.juggalol.com/juggalol/configurator",
|
2024-06-14 17:54:40 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
python_requires='>=3.6',
|
|
|
|
install_requires=required,
|
|
|
|
)
|