-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.3 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.3 KB
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
"""
Setup for xapi-db-load.
"""
from setuptools import find_packages, setup
from xapi_db_load import __version__
with open("README.rst", "r") as readme:
desc = readme.read()
setup(
name="xapi-db-load",
version=__version__,
packages=find_packages(),
include_package_data=True,
entry_points="""
[console_scripts]
xapi-db-load=xapi_db_load.main:cli
""",
install_requires=[
"click",
"clickhouse-connect",
"requests",
"smart_open[s3]",
"uvloop",
"urwid",
"chdb"
],
url="https://github.com/openedx/xapi-db-load",
project_urls={
"Code": "https://github.com/openedx/xapi-db-load",
"Issue tracker": "https://github.com/openedx/xapi-db-load/issues",
},
license="AGPLv3",
author="Open edX",
description="Loads testing xAPI events into databases and LRSs",
long_description=desc,
long_description_content_type="text/x-rst",
python_requires=">=3.12",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
],
)