-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (27 loc) · 955 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
import os
import io
from setuptools import setup, find_packages
from rgbpp import __version__
HERE = os.path.dirname(os.path.realpath(__file__))
README = os.path.join(HERE, 'README.md')
with io.open(README, encoding='utf-8') as f:
long_description = f.read()
VERSION = os.path.join(HERE, 'rgbpp', '__init__.py')
with io.open(VERSION, encoding='utf-8') as f:
package = {}
exec(f.read(), package)
version = package['__version__']
setup(name='rgbpp-sdk-python',
version=version,
description='RGB++ SDK',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ckb-cell/rgbpp-sdk-python',
author='Dylan',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=['jsonrpcclient', 'requests', 'typing-extensions', 'buidl'],
zip_safe=False,
include_package_data=True,
)