-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 1.27 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
#!/usr/bin/env python3
from setuptools import setup
setup(name='Wikicurses',
version='1.4',
description='A simple curses interface for accessing Wikipedia.',
author='Ian D. Scott',
author_email='[email protected]',
license = "MIT",
url='http://github.com/ids1024/wikicurses/',
packages = ['wikicurses'],
data_files=[
('/etc', ['wikicurses.conf']),
('/usr/share/man/man1', ['wikicurses.1']),
('/usr/share/man/man5', ['wikicurses.conf.5']),
('/usr/share/zsh/site-functions', ['_wikicurses'])
],
entry_points={'console_scripts': ['wikicurses = wikicurses.main:main']},
install_requires = ['beautifulsoup4', 'lxml', 'urwid'],
classifiers=[
"Topic :: Internet :: WWW/HTTP",
"Environment :: Console",
"Environment :: Console :: Curses",
"Operating System :: POSIX :: Linux",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License"
],
)