-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
63 lines (57 loc) · 1.93 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=59.6.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "simeon"
authors = [
{name = "MIT Institutional Research", email = "irx@mit.edu"},
]
description = "A CLI tool to help process research data from edX"
readme = "README.rst"
requires-python = ">=3.6"
keywords = ["research", "edx", "MOOC", "education", "online-learning"]
license = {text = "MIT License"}
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.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Text Processing",
]
dependencies = [
"boto3>=1.16.57",
"google-cloud-bigquery>=2.6.2",
"google-cloud-storage>=1.35.0",
"jinja2",
"python-dateutil>=2.8.1",
]
dynamic = ["version"]
[project.optional-dependencies]
geoip = ["geoip2"]
test = ["black", "isort", "tox"]
dev = ["black", "isort", "pip-tools", "sphinx", "sphinx-material", "tox"]
docs = ["sphinx", "sphinx-material"]
[tool.setuptools.package-data]
"simeon.upload" = ["schemas/*.json"]
"simeon.report" = ["queries/*.sql"]
"simeon.scripts" = ["data/*.csv", "data/*.txt"]
[project.scripts]
simeon = "simeon.scripts.simeon:main"
simeon-geoip = "simeon.scripts.geoip:main"
simeon-youtube = "simeon.scripts.youtube:main"
[project.urls]
"Homepage" = "https://github.com/MIT-IR/simeon"
"Bug Tracker" = "https://github.com/MIT-IR/simeon/issues"
"Documentation" = "https://mit-ir.github.io/simeon/"
[tool.black]
line-length = 120