generated from rochacbruno/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (28 loc) · 1019 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
27
28
29
30
31
32
33
34
35
36
"""Python setup.py for repltilian package."""
import os
from setuptools import find_packages, setup
def read(filepath: str) -> str:
with open(
os.path.join(os.path.dirname(__file__), filepath),
encoding="utf-8",
) as open_file:
content = open_file.read().strip()
return content
def read_requirements(path: str) -> list[str]:
return [
line.strip()
for line in read(path).split("\n")
if not line.startswith(('"', "#", "-", "git+"))
]
setup(
name="repltilian",
version=read("repltilian/VERSION"),
description="Awesome repltilian created by kmkolasinski",
url="https://github.com/kmkolasinski/repltilian/",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="kmkolasinski",
packages=find_packages(exclude=["tests", ".github", "notebooks"]),
install_requires=read_requirements("requirements.txt"),
extras_require={"test": read_requirements("requirements-test.txt")},
)