-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathsetup.py
75 lines (62 loc) · 1.74 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Python packaging for wxpusher.
File: setup.py
Author: huxuan
Email: i(at)huxuan.org
"""
from pkg_resources import DistributionNotFound
from pkg_resources import get_distribution
from setuptools import setup
NAME = 'wxpusher'
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities',
]
INSTALL_REQUIRES = [
'requests',
]
DESCRIPTION = (
'WxPusher Python SDK.'
)
KEYWORDS = [
'wxpusher',
'wechat',
'weixin',
'notification',
'push-notification',
'python-sdk',
]
try:
VERSION = f'v{get_distribution(NAME).version}'
except DistributionNotFound:
VERSION = 'master'
PROJECT_URL = 'https://github.com/wxpusher/wxpusher-sdk-python'
BASE_URL = f'{PROJECT_URL}/blob/{VERSION}'
def readme():
"""Parse README for long_description."""
content = open('README.md').read()
content = content.replace('README.md', f'{BASE_URL}/README.md', 1)
content = content.replace('README-en.md', f'{BASE_URL}/README-en.md', 1)
return content
setup(name=NAME,
description=DESCRIPTION,
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=CLASSIFIERS,
keywords=' '.join(KEYWORDS),
url=PROJECT_URL,
author='Xuan (Sean) Hu',
author_email='[email protected]',
license='Apache License 2.0',
packages=['wxpusher'],
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=INSTALL_REQUIRES,
python_requires='>=3',
include_package_data=True)