-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1.13 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
# -*- coding: utf-8 -*-
import os
import setuptools
os.chdir(os.path.dirname(os.path.abspath(__file__)))
with open("./requirements.txt", "r", encoding="utf-8") as fh:
dependences = fh.read().strip().split("\n")
setuptools.setup(
name="PyDrawille",
version="0.0.1.1",
author="金羿Eilles",
author_email="[email protected]",
description="Using Unicode braille characters to draw pixels in console.",
long_description=open("README.en.md", "r", encoding="utf-8")
.read()
.replace("./", "https://github.com/EillesWan/PyDrawille/tree/main/"),
long_description_content_type="text/markdown",
url="https://github.com/EillesWan/PyDrawille",
packages=setuptools.find_packages(),
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
python_requires=">=3.8",
install_requires=dependences,
license="MPL 2.0",
)