forked from cuda-networks/django-eb-sqs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1000 Bytes
/
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
VERSION = open(os.path.join(here, 'VERSION')).read()
README = open(os.path.join(here, 'README.md')).read()
setup(
name='django-eb-sqs',
version=VERSION,
package_dir={'eb_sqs': 'eb_sqs'},
include_package_data=True,
packages=find_packages(),
description='A simple task manager for AWS SQS',
long_description=README,
long_description_content_type="text/markdown",
url='https://github.com/cuda-networks/django-eb-sqs',
install_requires=[
'boto3>=1.9.86',
'Django>=1.10.6',
'requests>=2.10.0',
],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django'
]
)