-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 867 Bytes
/
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
import os
import setuptools
requires = [
"python-dotenv==0.20.0",
"requests==2.27.1",
"websockets==10.3",
]
with open("README.md", "r") as fh:
long_description = fh.read()
about = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(
os.path.join(here, "pykorbit", "__metadata__.py"),
mode="r",
encoding="utf-8",
) as f:
exec(f.read(), about)
setuptools.setup(
name="pykorbit",
version=about["__version__"],
description="Python REST/WS API for Korbit",
long_description=long_description,
long_description_content_type="text/markdown",
author="Bisonai",
author_email="[email protected]",
url="https://github.com/bisonai/pykorbit",
packages=["pykorbit"],
package_dir={"pykorbit": "pykorbit"},
python_requires=">=3.9, <4",
install_requires=requires,
zip_safe=False,
)