-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1.23 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
from setuptools import setup, find_packages
setup(
name="scystream-sdk",
version="1.0.0",
description="The official SDK for developing scystream compute blocks",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/RWTH-TIME/scystream-sdk",
author="Felix Evers, Paul Kalhorn",
author_email="evers@time.rwth-aachen.de, kalhorn@time.rwth-aachen.de",
license="MIT",
packages=find_packages(),
include_package_data=True,
package_data={
"scystream.sdk": [
"spark_jars/postgresql-42.7.4.jar",
]
},
install_requires=[
"pydantic>=2.9.2",
"PyYAML>=6.0.2",
"pydantic-settings>=2.6.1",
"pyspark>=3.5.3",
"setuptools>=75.5.0",
"boto3>=1.35.65"
],
extras_require={
"dev": [
"sphinx>=8.1.3",
"sphinx-autodoc-typehints>=2.5.0",
"sphinxawesome-theme>=5.3.2",
"Pygments>=2.18.0"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)