-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 913 Bytes
/
setup.py
File metadata and controls
41 lines (34 loc) · 913 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
29
30
31
32
33
34
35
36
37
38
39
40
41
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""
Dao-Ke-Dao
~~~~~~~~~~
Common Message Module for decentralized instant messaging
"""
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='dkd',
version=__version__,
url='https://github.com/dimchat/dkd-py',
license='MIT',
author=__author__,
author_email=__contact__,
description='A common message module',
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
install_requires=[
'mkm>=2.4.0',
]
)