-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
28 lines (27 loc) · 1 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
from setuptools import setup, find_packages
setup(
name="aquvitae",
version="0.1.7",
description="The easiest Knowledge Distillation library for Light Weight DeepLearning",
author="marload",
author_email="[email protected]",
url="https://github.com/aquvitae/aquvitae",
download_url="https://github.com/aquvitae/aquvitae/archive/v0.1.7.tar.gz",
license="MIT",
install_requires=[],
setup_requires=["tqdm>=4.46.1", "pytorch-ignite>=0.4.0"],
packages=find_packages(exclude=[]),
keywords=["tensorflow", "pytorch", "pytorch-ignite", "tqdm"],
python_requires=">=3",
package_data={},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)