forked from chrieke/prettymapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.12 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
32
33
34
35
36
from pathlib import Path
from setuptools import setup, find_packages
parent_dir = Path(__file__).resolve().parent
setup(
name="prettymapp",
version="0.2.0",
author="Christoph Rieke",
author_email="christoph.k.rieke@gmail.com",
description="",
long_description=parent_dir.joinpath("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/chrieke/prettymapp",
license="MIT",
packages=find_packages(
exclude=("prettymapp/tests", "streamlit-prettymapp", "cache")
),
package_data={"": ["fonts/PermanentMarker-Regular.ttf"]},
data_files=[
("", ["requirements.txt"]),
],
include_package_data=True,
zip_safe=False,
install_requires=parent_dir.joinpath("requirements.txt")
.read_text(encoding="utf-8")
.splitlines(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
],
python_requires=">=3.6",
)