python_test_project/setup.py
2024-11-11 14:12:40 +00:00

47 lines
1.3 KiB
Python

"""Python setup.py for python_test_project package"""
import io
import os
from setuptools import find_packages, setup
def read(*paths, **kwargs):
"""Read the contents of a text file safely.
>>> read("python_test_project", "VERSION")
'0.1.0'
>>> read("README.md")
...
"""
content = ""
with io.open(
os.path.join(os.path.dirname(__file__), *paths),
encoding=kwargs.get("encoding", "utf8"),
) as open_file:
content = open_file.read().strip()
return content
def read_requirements(path):
return [
line.strip()
for line in read(path).split("\n")
if not line.startswith(('"', "#", "-", "git+"))
]
setup(
name="python_test_project",
version=read("python_test_project", "VERSION"),
description="Awesome python_test_project created by Projects",
url="https://git.disi.dev/Projects/python_test_project/",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Projects",
packages=find_packages(exclude=["tests", ".gitea"]),
install_requires=read_requirements("requirements.txt"),
entry_points={
"console_scripts": ["python_test_project = python_test_project.__main__:main"]
},
extras_require={"test": read_requirements("requirements-test.txt")},
)