-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·42 lines (39 loc) · 1.27 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
36
37
38
39
40
41
42
#!/usr/bin/env python
"""Setup for the edX Webhooks app."""
import os
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='webhook-receiver',
use_scm_version=True,
description='edX Webhooks: a webhook processor interfacing with Open edX',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/hastexo/webhook-receiver',
author='hastexo',
author_email='[email protected]',
license='AGPL-3.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Education :: Computer Aided Instruction (CAI)',
'Topic :: Education',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'celery>=3.1.25',
'django>=2.2',
'django-celery>=3.2.1',
'django_fsm',
'edx-rest-api-client>=1.9.2',
],
setup_requires=[
'setuptools_scm<6',
],
)