forked from peterbrittain/asciimatics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
81 lines (75 loc) · 2.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
"""
A setuptools based setup module for asciimatics.
Based on the sample Python packages at:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
import shutil
with open("./doc/source/conf_orig.py", "r") as src:
with open("./doc/source/conf.py", "w") as dst:
dst.write("# FILE COPIED FROM conf_orig.py; DO NOT CHANGE\n")
shutil.copyfileobj(src, dst)
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file and strip any pre-amble (i.e. badges) from it.
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read().split("\n")
while long_description[0] not in ("ASCIIMATICS", "ASCIIMATICS\r"):
long_description = long_description[1:]
long_description = "\n".join(long_description)
setup(
name='asciimatics',
use_scm_version={"write_to": "asciimatics/version.py"},
description='A cross-platform package to replace curses (mouse/keyboard '
'input & text colours/positioning) and create ASCII '
'animations',
long_description=long_description,
url='https://github.com/peterbrittain/asciimatics',
author='Peter Brittain',
author_email='peter.brittain.os@gmail.com',
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Console :: Curses',
'Intended Audience :: Developers',
'Topic :: Text Processing :: General',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: User Interfaces',
'Topic :: Terminals',
],
keywords='ascii ansi art credits titles animation curses '
'ncurses windows xterm mouse keyboard terminal tty '
'color colour crossplatform console',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[
'pyfiglet >= 0.7.2',
'Pillow >= 2.7.0',
'wcwidth',
'future',
'backports.functools_lru_cache;python_version<"3.0"',
],
extras_require={
':sys_platform == "win32"': ['pypiwin32'],
},
setup_requires=['setuptools_scm'],
tests_require=[
'mock',
'nose',
],
test_suite='nose.collector',
)