-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
35 lines (33 loc) · 1.24 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
from setuptools import setup, find_packages
VERSION = '1.3.0'
DOWNLOAD_URL = ('https://github.com/philipbl/python-persistent-queue/archive/'
'{}.zip'.format(VERSION))
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
REQUIRES = []
setup(
name='python_persistent_queue',
version=VERSION,
license='MIT License',
author='Philip Lundrigan',
author_email='[email protected]',
download_url=DOWNLOAD_URL,
install_requires=REQUIRES,
packages=PACKAGES,
include_package_data=True,
test_suite='tests',
zip_safe=False,
url='https://github.com/philipbl/python-persistent-queue',
description='A persistent queue. It is optimized for peeking at values and'
' then deleting them off to top of the queue.',
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)