-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
42 lines (32 loc) · 1.26 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import QuantTorch
setup(
name='QuantTorch',
version=QuantTorch.__version__,
packages=find_packages(),
author="François 'Enderdead' Gauthier-Clerc",
# Votre email, sachant qu'il sera publique visible, avec tous les risques
# que ça implique.
author_email="[email protected]",
# Une description courte
description="A set of quantization implementations on pytorch.",
# Une description longue, sera affichée pour présenter la lib
# Généralement on dump le README ici
long_description=open('README.md').read(),
install_requires=["numpy", "matplotlib"],
include_package_data=True,
# Une url qui pointe vers la page officielle de votre lib
url='https://github.com/Enderdead/Pytorch_Quantize_impls',
# Il n'y a pas vraiment de règle pour le contenu. Chacun fait un peu
# comme il le sent. Il y en a qui ne mettent rien.
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Neuronal network quantization",
],
license="MIT",
)