forked from openedx/edx-milestones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from milestones import __version__ as VERSION
setup(
name='edx-milestones',
version=VERSION,
description='Significant events module for Open edX',
long_description=open('README.md').read(),
author='edX',
url='https://github.com/edx/edx-milestones',
license='AGPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages=find_packages(exclude=["tests"]),
install_requires=[
"django>=1.8,<2.0",
"django-model-utils",
"edx-opaque-keys>=0.2.1,<1.0.0",
],
tests_require=[
"coverage==3.7.1",
"nose==1.3.3",
"httpretty==0.8.0",
"pep8==1.5.7",
"pylint==1.2.1",
"pep257==0.3.2"
]
)