Skip to content

Commit 290c959

Browse files
committed
Create setup.py
1 parent f9bfeb9 commit 290c959

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="pysirix",
8+
version="0.1.0",
9+
author="Moshe Uminer",
10+
author_email="mosheduminer@gmail.com",
11+
description="The SirixDB Python SDK",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/sirixdb/sirix-python-client",
15+
packages=setuptools.find_packages(exclude=("tests",)),
16+
install_requires=["httpx"],
17+
classifiers=[
18+
"Programming Language :: Python :: 3",
19+
"License :: OSI Approved :: MIT License",
20+
"Operating System :: OS Independent",
21+
],
22+
python_requires='>=3.6',
23+
)

0 commit comments

Comments
 (0)