-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (28 loc) · 1.05 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
from distutils.core import setup
files = ["uslib/*"]
REQUIREMENTS = [
"pyfiglet == 0.6.1",
"pygments == 1.6"
]
setup(name = "understate",
version = "0.2.3",
description = "markdown presentations using ncurses",
author = "Ithai Levi",
author_email = "[email protected]",
url = "http://github.com/L3V3L9",
packages = ['uslib'],
package_data = {'uslib' : files },
scripts = ["understate"],
long_description = """Create stunnig terminal presentations user markdown and some ncurses magic""",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python',
'Topic :: Text Processing :: Markup'
],
install_requires=REQUIREMENTS
)