Skip to content

Commit

Permalink
Merge pull request #6 from Authing/feature/new_login_methods
Browse files Browse the repository at this point in the history
update setup.py
  • Loading branch information
liaochangjiang authored Oct 25, 2019
2 parents f1bed28 + 5c62514 commit 0184abf
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ __pycahce__/*
.DS_Store
dist/*
*.egg-info
.idea/
*.pyc
44 changes: 26 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
from setuptools import setup, find_packages

setup(
name='authing', #名称
version='0.13.0', #版本
description="Authing SDK for Python", #描述
keywords='authing sso AaaS IdaaS',
author='authing', #作者
author_email='[email protected]', #作者邮箱
maintainer='authing',
maintainer_email='[email protected]',
url='https://github.com/Authing/authing-py-sdk', #作者链接
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[ #需求的第三方模块
from setuptools import setup, find_packages

with open("README.md", "r") as f:
long_description = f.read()

setup(
name='authing', # 名称
version='0.14.0', # 版本
description="Authing SDK for Python", # 描述
long_description=long_description,
long_description_content_type="text/markdown",
keywords='authing sso AaaS IdaaS',
author='authing', # 作者
author_email='[email protected]', # 作者邮箱
maintainer='authing',
maintainer_email='[email protected]',
url='https://github.com/Authing/authing-py-sdk', # 作者链接
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[ # 需求的第三方模块
'sgqlc',
'rsa'
],
)
],
classifiers=[
"Programming Language :: Python :: 3",
],
)

0 comments on commit 0184abf

Please sign in to comment.