-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
46 lines (43 loc) · 1.31 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
43
44
45
46
# -*- coding: utf-8 -*-
"""
setup.py
Contains setup information for the olxcleaner library.
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="olxcleaner",
version="0.1.3",
author="Jolyon Bloomfield",
author_email="[email protected]",
description="Tool to scan edX courses for various errors",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jolyonb/olxcleaner",
license='LICENSE',
packages=setuptools.find_packages(exclude=['tests']),
classifiers=[
"Intended Audience :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
keywords='edx',
install_requires=[
'lxml',
'python-dateutil',
'pytz',
'pylatexenc'
],
python_requires='~=3.6',
entry_points={
'console_scripts': [
'edx-cleaner=olxcleaner.entries.edxcleaner:main',
'edx-reporter=olxcleaner.entries.edxreporter:main'
],
}
)