-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
70 lines (67 loc) · 2.25 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import os
from setuptools import find_packages, setup
# Get the value of __version__ from the library's __init__.py file
exec(open(os.path.join("simeon", "__init__.py")).read())
setup(
name="simeon",
version=globals().get("__version__", "0.0.25"),
author="MIT Institutional Research",
author_email="irx@mit.edu",
packages=find_packages(exclude=("docs",)),
url="https://github.com/MIT-IR/simeon",
license="MIT LICENSE",
keywords=[
"edx research data",
"mitx",
"edx",
"MOOC",
"education",
"online learning",
],
python_requires=">=3.6",
description="A CLI tool to help process research data from edX",
long_description=open("README.rst").read(),
entry_points={
"console_scripts": [
"simeon=simeon.scripts.simeon:main",
"simeon-geoip=simeon.scripts.geoip:main",
"simeon-youtube=simeon.scripts.youtube:main",
],
},
install_requires=[
"boto3>=1.16.57",
"google-cloud-bigquery>=2.6.2",
"google-cloud-storage>=1.35.0",
"jinja2",
"python-dateutil>=2.8.1",
],
extras_require={
"geoip": ["geoip2"],
"test": ["black", "isort", "tox"],
"dev": ["black", "isort", "pip-tools", "sphinx", "sphinx-material", "tox"],
"docs": ["sphinx", "sphinx-material"],
},
package_data={
"simeon.upload": ["schemas/*.json"],
"simeon.report": ["queries/*.sql"],
"simeon.scripts": ["data/*.csv"],
},
test_suite="simeon.tests",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Text Processing",
],
)