Skip to content

Commit 0184abf

Browse files
Merge pull request #6 from Authing/feature/new_login_methods
update setup.py
2 parents f1bed28 + 5c62514 commit 0184abf

File tree

2 files changed

+28
-18
lines changed

2 files changed

+28
-18
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ __pycahce__/*
33
.DS_Store
44
dist/*
55
*.egg-info
6+
.idea/
7+
*.pyc

setup.py

Lines changed: 26 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,28 @@
1-
from setuptools import setup, find_packages
2-
3-
setup(
4-
name='authing', #名称
5-
version='0.13.0', #版本
6-
description="Authing SDK for Python", #描述
7-
keywords='authing sso AaaS IdaaS',
8-
author='authing', #作者
9-
author_email='[email protected]', #作者邮箱
10-
maintainer='authing',
11-
maintainer_email='[email protected]',
12-
url='https://github.com/Authing/authing-py-sdk', #作者链接
13-
packages=find_packages(),
14-
include_package_data=True,
15-
zip_safe=False,
16-
install_requires=[ #需求的第三方模块
1+
from setuptools import setup, find_packages
2+
3+
with open("README.md", "r") as f:
4+
long_description = f.read()
5+
6+
setup(
7+
name='authing', # 名称
8+
version='0.14.0', # 版本
9+
description="Authing SDK for Python", # 描述
10+
long_description=long_description,
11+
long_description_content_type="text/markdown",
12+
keywords='authing sso AaaS IdaaS',
13+
author='authing', # 作者
14+
author_email='[email protected]', # 作者邮箱
15+
maintainer='authing',
16+
maintainer_email='[email protected]',
17+
url='https://github.com/Authing/authing-py-sdk', # 作者链接
18+
packages=find_packages(),
19+
include_package_data=True,
20+
zip_safe=False,
21+
install_requires=[ # 需求的第三方模块
1722
'sgqlc',
1823
'rsa'
19-
],
20-
)
24+
],
25+
classifiers=[
26+
"Programming Language :: Python :: 3",
27+
],
28+
)

0 commit comments

Comments
 (0)