-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (42 loc) · 1.43 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
from setuptools import setup, find_packages
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, "gviewer", "version.py")).read())
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="gviewer",
version=globals()["VERSION"],
description="General Viewer",
long_description=long_description,
author="chhsiao90",
author_email="[email protected]",
url="https://github.com/chhsiao90/gviewer",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Environment :: Console :: Curses",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Widget Sets"
],
packages=find_packages(include=["gviewer", "gviewer.*"]),
test_suite="gviewer.tests",
install_requires=[
"urwid==1.3.1"
],
extras_require={
"dev": [
"Pygments==2.1.3",
"mock==2.0.0"
]
}
)