-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (23 loc) · 868 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
import os
from setuptools import setup
from balsa.__version__ import __version__, __title__, __author__, __author_email__, __url__, __download_url__, __description__
readme_file_path = os.path.join(__title__, "readme.rst")
with open(readme_file_path, encoding="utf-8") as f:
long_description = "\n" + f.read()
setup(
name=__title__,
description=__description__,
long_description=long_description,
long_description_content_type="text/x-rst",
version=__version__,
author=__author__,
author_email=__author_email__,
license="MIT License",
url=__url__,
download_url=__download_url__,
keywords=["logging", "utility"],
packages=[__title__],
package_data={__title__: [readme_file_path, "py.typed"]},
install_requires=["appdirs", "attrs", "mttkinter", "python-dateutil", "yasf", "tobool"],
classifiers=[],
)