-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 783 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 783 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = '0.1.0'
# long description
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='dqueue',
packages=['dqueue'],
version=version,
author='Vitaly R. Samigullin',
author_email='vrs@pilosus.org',
description='Distributed queue based on Redis',
long_description=readme,
include_package_data=True,
install_requires=requirements,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
'Programming Language :: Python :: 3.6',
'Topic :: Database'
'License :: OSI Approved :: MIT License',
],
install_requires=[
'redis',
],
)