-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.17 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.17 KB
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
37
38
39
40
# coding=utf8
from setuptools import setup
from printer.version import __version__, __author__, __url__, __project__
setup(
name=__project__,
version=__version__,
keywords=['字符画', '终端打印'],
description="终端图片、文字生成器",
license='MIT',
author=__author__,
author_email='hellflamedly@gmail.com',
url=__url__,
packages=["printer"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.10',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
'Topic :: Text Processing :: General',
'Topic :: Terminals',
'Topic :: Games/Entertainment'
],
install_requires=[
'Pillow'
],
entry_points={
'console_scripts': [
'terminalprint=printer.run:run'
]
}
)