forked from jsbueno/terminedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (60 loc) · 2.31 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# coding: utf-8
from setuptools import setup, find_packages
setup(
name = 'terminedia',
packages = find_packages(),
version = "0.3.dev0",
license = "LGPLv3+",
author = "João S. O. Bueno",
author_email = "gwidion@gmail.com",
description = "Utilities for drawing and interactiveness at the terminal",
keywords = "terminal cmd posix xterm ANSI color",
url = "https://github.com/jsbueno/terminedia",
project_urls={
"Documentation": "https://terminedia.readthedocs.io/en/stable/",
"Source Code": "https://github.com/jsbueno/terminedia",
},
long_description = open("README.md").read(),
# use_scm_version=True,
setup_requires=['setuptools_scm'],
include_package_data=True,
zip_safe = True,
test_requires = [],
install_requires=[
"click",
"colorama >= 1.0;platform_system==\"Windows\"",
],
extras_require = {
"doc": ["Sphinx==2.0.0"],
"images": ["pillow>=6.0.0"],
"tests": ["pytest"]
},
entry_points = """
[console_scripts]
terminedia-bezier=terminedia.examples.bezier:main
terminedia-context=terminedia.examples.context:main
terminedia-ellipses=terminedia.examples.ellipses:main
terminedia-image=terminedia.examples.image:main
terminedia-lines=terminedia.examples.lines:main
terminedia-plot=terminedia.examples.plot:main
terminedia-shapes=terminedia.examples.shapes:main
terminedia-snake=terminedia.examples.snake:main
terminedia-effects=terminedia.examples.effects:main
terminedia-text=terminedia.examples.text:main
""",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics",
"Topic :: Terminals",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
]
)