-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.08 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.08 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="solvexia_sdk",
version="1.3.2",
author="Solvexia Pty Ltd",
author_email="support@solvexia.com",
description="A development kit written in Python to access and work with Solvexia resources",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/solvexia/solvexia-python-sdk",
packages=["solvexia_sdk", "solvexia_sdk.file", "solvexia_sdk.process", "solvexia_sdk.datasteps", "solvexia_sdk.processrun",
"solvexia_sdk.table", "solvexia_sdk.user", "solvexia_sdk.usergroup"],
install_requires=[
'filesplit>=4.1.0',
'readme-renderer>=29.0',
'requests>=2.25.1',
'requests-toolbelt>=0.9.1',
],
license="GNU General Public License v3.0",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)