加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 2.45 KB
一键复制 编辑 原始数据 按行查看 历史
Naoise Holohan 提交于 2020-07-14 13:01 . Removing support for Python 3.5
import codecs
import os
import setuptools
def read(file_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, file_path), 'r') as fp:
return fp.read()
def get_version(file_path):
for line in read(file_path).splitlines():
if line.startswith('__version__'):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
raise RuntimeError("Unable to find version string.")
install_requires = ['numpy >= 1.15.0',
'setuptools >= 39.0.1',
'scikit-learn >= 0.22.0',
'scipy >= 1.2.1',
'joblib >= 0.11',
]
docs_require = ['sphinx >= 1.4',
'sphinx_rtd_theme']
setuptools.setup(name='diffprivlib',
version=get_version("diffprivlib/__init__.py"),
description='IBM Differential Privacy Library',
long_description=read("README.md"),
long_description_content_type='text/markdown',
author='Naoise Holohan',
author_email='naoise.holohan@ibm.com',
url='https://github.com/IBM/differential-privacy-library',
license='MIT',
install_requires=install_requires,
extras_require={
'docs': docs_require
},
python_requires='>=3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Security',
],
packages=setuptools.find_packages())
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化