forked from Shubham-Saha/Fenics---A-Modular-Framework-for-Security-Evaluation-in-Decentralized-Federated-Learning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.19 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.19 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
# blixtbird/setup.py
from setuptools import setup, find_packages
import os
setup(
name='blixtbird',
version='1.0.1',
author='Gabriel Bengtsson, Zaid Haj-Ibrhaim, Piotr Krzyczkowski and Anna Lithell',
author_email='anna.lithell@gustas.se',
packages=find_packages(),
install_requires=[
'numpy',
'torch',
'torchvision',
'matplotlib',
'seaborn',
'scikit-learn',
'networkx',
'mpi4py',
'pyfiglet',
'colorama',
'pydantic',
'pyyaml'
],
entry_points={
'console_scripts': [
'blixtbird=blixtbird.cli.runner:run_blixtbird_shell',
],
},
include_package_data=True,
description='Blixtbird: A Simulation Framework for Modeling Attacks in DFL networks',
long_description=open('README.md').read() if os.path.exists('README.md') else 'Blixtbird Shell for DFL Simulator',
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.11',
)