-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·47 lines (41 loc) · 1.26 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
#! /usr/bin/env python
import io
try:
from setuptools import setup
have_setuptools = True
except ImportError:
from distutils.core import setup
have_setuptools = False
VERSION = "0.5.123"
M_VERSION = "0.5"
setup_kwargs = {
"version": VERSION,
"description": 'The enlightened pager: less paging. more content. read widely.',
"author": 'Paul Ivanov',
"author_email": '[email protected]',
"url": 'http://kant-en.org/',
"download_url": "https://github.com/ivanov/kanten/zipball/" + M_VERSION,
"classifiers": [
"License :: OSI Approved",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Topic :: Utilities",
],
"zip_safe": False,
"data_files": [("", ['LICENSE', 'README.md']),],
}
if have_setuptools:
setup_kwargs['install_requires'] = [
'Pygments >= 1.6',
'urwid >= 1.1.1',
]
if __name__ == '__main__':
setup(
name='kanten',
py_modules=['kanten'],
entry_points={'console_scripts': ['kanten = kanten:main',],},
long_description=io.open('README.md', encoding='utf-8').read(),
**setup_kwargs
)