-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 974 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
from setuptools import setup, find_packages
with open('README.md') as readme:
long_description = readme.read()
setup(
name='test-zongissuess',
version='0.0.8',
description='Celery tasks supporting the operations of edX\'s ecommerce service',
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Intended Audience :: Developers',
'Environment :: Web Environment',
],
keywords='ihassan test jenkins',
url='https://github.com/syedimranhassan/ihpkg',
author='ihassan',
author_email='[email protected]',
license='AGPL',
packages=find_packages(exclude=['*.tests']),
install_requires=[
'celery>=3.1.18,<4.0.0',
'edx-rest-api-client>=1.5.0,<2.0.0'
],
)