Python/setup.py

47 lines
1.2 KiB
Python
Raw Normal View History

2024-11-09 08:23:02 -08:00
"""Python setup.py for python package"""
2024-11-09 08:01:27 -08:00
import io
import os
from setuptools import find_packages, setup
def read(*paths, **kwargs):
"""Read the contents of a text file safely.
2024-11-09 08:23:02 -08:00
>>> read("python", "VERSION")
2024-11-09 08:01:27 -08:00
'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(
2024-11-09 08:23:02 -08:00
name="python",
version=read("python", "VERSION"),
description="Awesome python created by Templates",
url="https://git.disi.dev/Templates/Python/",
2024-11-09 08:01:27 -08:00
long_description=read("README.md"),
long_description_content_type="text/markdown",
2024-11-09 08:23:02 -08:00
author="Templates",
2024-11-09 08:01:27 -08:00
packages=find_packages(exclude=["tests", ".gitea"]),
install_requires=read_requirements("requirements.txt"),
entry_points={
2024-11-09 08:23:02 -08:00
"console_scripts": ["python = python.__main__:main"]
2024-11-09 08:01:27 -08:00
},
extras_require={"test": read_requirements("requirements-test.txt")},
)