-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.45 KB
/
setup.py
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
from setuptools import setup, find_packages
# version
version = {}
with open('edgify/version.py', 'r') as f:
exec(f.read(), version)
download_url = 'https://github.com/scale-lab/archive/v_' + version['__version__'] + '.tar.gz'
# description
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'edgify',
packages = find_packages(),
version = version['__version__'],
license = 'BSD-3 License',
description = 'Personalize DL models on the edge.',
author = 'Abdelrahman Hosny',
author_email = '[email protected]',
url = 'https://github.com/scale-lab/EdgeTraining',
download_url = download_url,
keywords = ['Edge', 'Computing', 'Deep Learning'],
install_requires=[
'numpy==1.20.1',
'Pillow==8.1.0',
'torch==1.7.1',
'torchvision==0.8.2',
'typing-extensions==3.7.4.3'
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
long_description = long_description,
long_description_content_type = 'text/markdown',
)