-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (32 loc) · 1.04 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
from setuptools import setup, find_packages # type: ignore
DESCRIPTION = "Python Ragic API client for data loading and manipulation."
# python3 setup.py sdist bdist_wheel
# twine upload --skip-existing dist/* --verbose
VERSION = "0.3.2"
with open("./README.md", "r", encoding="utf-8") as f:
long_description = f.read()
core_dependencies = [
"python-dotenv==0.21.0",
"PyYAML==6.0.2",
"httpx[http2]==0.28.1",
"h2==4.2.0",
]
setup(
name="python_ragic",
version=VERSION,
packages=find_packages(),
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
author="jonah_whaler_2348",
author_email="jk_saga@proton.me",
license="GPLv3",
install_requires=core_dependencies,
keywords=["ragic", "data loader"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
],
)