This repository was archived by the owner on Jun 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.46 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# @Author : FederalLab
# @Date : 2021-09-26 00:35:18
# @Last Modified by : Chen Dengsheng
# @Last Modified time: 2021-09-26 00:35:18
# Copyright (c) FederalLab. All rights reserved.
"""python setup.py sdist bdist_wheel python -m twine upload dist/*"""
from openfed import __version__
from setuptools import find_packages, setup
with open('requirements.txt', 'r', encoding='utf-8') as fh:
install_requires = fh.read()
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
install_requires=install_requires,
name='benchmark',
version=__version__,
author='FederalLab',
author_email='densechen@foxmail.com',
description='Federated Learning Simulator on Light Tasks',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/FederalLab/benchmark-lightly',
download_url='https://github.com/FederalLab/'
'benchmark-lightly/archive/main.zip',
packages=find_packages(),
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
license='MIT License',
python_requires='>=3.7',
)