-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (40 loc) · 1.11 KB
/
setup.py
File metadata and controls
48 lines (40 loc) · 1.11 KB
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
38
39
40
41
42
43
44
45
46
47
48
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""
Decentralized Instant Messaging (Python Plugins)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Plugins for MingKeMing module
"""
import io
from setuptools import setup, find_packages
__version__ = '2.4.0'
__author__ = 'Albert Moky'
__contact__ = 'albert.moky@gmail.com'
with io.open('README.md', 'r', encoding='utf-8') as fh:
readme = fh.read()
setup(
name='dimplugins',
version=__version__,
url='https://github.com/dimchat/sdk-py',
license='MIT',
author=__author__,
author_email=__contact__,
description='Decentralized Instant Messaging (Python Plugins)',
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
package_data={
'': ['res/*.js']
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
install_requires=[
'dimp>=2.4.0',
'pycryptodome', # 3.14.1
'base58', # 1.0.3
'ecdsa', # 0.16.1
]
)