-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 821 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 821 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pycolonies",
version="1.0.25",
author="Johan Kristiansson",
author_email="johan.kristiansson@ri.se",
description="Colonies Python SDK",
long_description=long_description,
py_modules=["pycolonies", "crypto", "cfs", "model"],
long_description_content_type="text/markdown",
url="https://github.com/colonyos/pycolonies",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"requests>=2.27.1",
"websocket-client>=1.3.1",
"boto3>=1.34.136",
"pydantic>=2.6.4"
]
)