This repository was archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (35 loc) · 1.33 KB
/
setup.py
File metadata and controls
43 lines (35 loc) · 1.33 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import find_packages, setup
def readme():
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
def read_requirements():
with open('requirements.txt', 'r') as f:
content = f.readlines()
return content
if __name__ == '__main__':
setup(name='scaelum',
version='0.0.1',
description='Accelerating Geo-distributed Computing in Federated Learning',
long_description=readme(),
long_description_content_type="text/markdown",
author='HPC-AI Technology Inc.',
author_email='contact@hpcaitech.com',
url='https://github.com/hpcaitech/SkyComputing',
keywords='Python, scripts',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
license='Apache License 2.0',
install_requires=read_requirements(),
zip_safe=False,
)