-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,4 +104,5 @@ venv.bak/ | |
.mypy_cache/ | ||
|
||
t.* | ||
dist/ | ||
t/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
""" setup """ | ||
''' setup ''' | ||
|
||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
with open('README.md', 'r') as fh: | ||
long_description = fh.read() | ||
|
||
version = '0.0.0' | ||
with open('VERSION', 'r') as fh: | ||
version = fh.readline() | ||
|
||
setuptools.setup( | ||
name="wechaty", | ||
version="0.0.2", | ||
author="Huan LI", | ||
author_email="[email protected]", | ||
description="Wechaty is a Bot SDK for Wechat Personal Account", | ||
name='wechaty', | ||
version=version, | ||
author='Huan LI (李卓桓)', | ||
author_email='[email protected]', | ||
description='Wechaty is a Bot SDK for Wechat Personal Account', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Chatie/python-wechaty", | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/Chatie/python-wechaty', | ||
packages=setuptools.find_packages('src'), | ||
package_dir={'': 'src'}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent', | ||
], | ||
) |