-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.06 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
import setuptools
version = '0.0.1'
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='py-queue-factory',
version=version,
author='Anujith Singh',
author_email='[email protected]',
description='Queue factory to work with multiple types of queue',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/practo/py-queue-factory',
packages=setuptools.find_packages(),
install_requires=[
'boto3>=1.7.*',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
keywords='queue factory',
project_urls={
'Documentation': 'https://github.com/practo/py-queue-factory/wiki',
'Source': 'https://github.com/practo/py-queue-factory',
'Tracker': 'https://github.com/practo/py-queue-factory/issues',
},
)