加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
凉清 提交于 2015-09-14 01:13 . add lockfile
from setuptools import setup, find_packages
from codecs import open
from os import path
import syncrypto
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='syncrypto',
version=syncrypto.__version__,
description=syncrypto.__doc__,
long_description=long_description,
url='https://github.com/liangqing/syncrypto',
author=syncrypto.__author__,
author_email='liangqing226@gmail.com',
license='http://www.apache.org/licenses/LICENSE-2.0',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Communications :: File Sharing',
],
packages=find_packages(),
install_requires=['cryptography', 'lockfile'],
package_data={
'syncrypto': ['README.rst', 'LICENSE'],
},
entry_points={
'console_scripts': [
'syncrypto = syncrypto.__main__:main',
],
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化