forked from tiagocoutinho/qredis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (41 loc) · 1.16 KB
/
setup.py
File metadata and controls
46 lines (41 loc) · 1.16 KB
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
import os
import sys
from setuptools import setup
# make sure we use qredis from the source
_this_dir = os.path.dirname(__file__)
sys.path.insert(0, _this_dir)
import qredis
requirements = [
'redis',
'PyQt4',
]
with open(os.path.join(_this_dir, 'README.rst')) as f:
readme = f.read()
setup(
name='qredis',
version=qredis.__version__,
description="Qt based Redis GUI",
long_description=readme,
author="Tiago Coutinho",
author_email='coutinhotiago@gmail.com',
url='https://github.com/tiagocoutinho/qredis',
packages=['qredis', 'qredis.images', 'qredis.ui'],
package_data={'qredis.images': ['*.png'],
'qredis.ui': ['*.ui'],},
entry_points={
'console_scripts': [
'qredis=qredis.window:main'
]
},
install_requires=requirements,
zip_safe=False,
keywords='redis',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)