forked from rocklabs-io/ic-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 974 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
#!/usr/bin/env python
import setuptools
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'r') as f:
long_description = f.read()
setup(
name = 'ic-py',
version = '1.0.1',
description = 'Python Agent Library for the Internet Computer',
long_description = long_description,
long_description_content_type = "text/markdown",
url = 'https://github.com/rocklabs-io/ic-py',
author = 'Rocklabs',
author_email = 'hello@rocklabs.io',
keywords = 'dfinity ic agent',
install_requires = [
'httpx>=0.22.0',
'ecdsa>=0.18.0b2',
'cbor2>=5.4.2',
'leb128>=1.0.4',
'waiter>=1.2',
'antlr4-python3-runtime==4.9.3',
'mnemonic==0.20'
],
py_modules = ['ic'],
package_dir = { 'ic': "ic" },
packages = setuptools.find_packages(where='./'),
include_package_data = True
)