-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (44 loc) · 1.64 KB
/
setup.py
File metadata and controls
49 lines (44 loc) · 1.64 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
43
44
45
46
47
48
49
import sys
from setuptools import find_packages, setup
# Check if current python installation is >= 3.8
if sys.version_info < (3, 8, 0):
raise Exception("MEDflrequires python 3.8 or later")
with open("README.md", encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.readlines()
setup(
name="medfl",
version="2.0.5.dev9",
author="MEDomics consortium",
author_email="medomics.info@gmail.com",
description="Python Open-source package for simulating federated learning and differential privacy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MEDomics-UdeS/MEDfl",
project_urls={
'Documentation': 'https://',
'Github': 'https://github.com/MEDomics-UdeS/MEDfl'
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='federated learning differential privacy medical research ',
scripts=[],
python_requires='>=3.8,<3.15',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=requirements,
package_data={
# Include the db_config.ini file from the scripts folder
'scripts': ['db_config.ini'],
# include the create db script
'scripts': ['create_db.py'],
# Include the params.yaml file
'MEDfl': ['LearningManager/params.yaml'],
}
)