-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
63 lines (39 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import anonymizer
setup(
# le nom de votre bibliothèque, tel qu'il apparaitre sur pypi
name='anonymizer',
# la version du code
version=anonymizer.__version__,
packages=find_packages(),
author="SGMAP-AGD",
author_email="plbithorel@gmail.com",
# Une description courte
description="Module de k-anonymisation",
long_description=open('README.md').read(),
include_package_data=True,
url='https://github.com/SGMAP-AGD/anonymisation',
# Il est d'usage de mettre quelques metadata à propos de sa lib
# Pour que les robots puissent facilement la classer.
# La liste des marqueurs autorisées est longue:
# https://pypi.python.org/pypi?%3Aaction=list_classifiers.
#
# 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",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
entry_points = {
'console_scripts': [
'local_agregation = anonymizer.anonymity:local_agregation',
'get_k = anonymizer.anonymity:get_k',
],
},
)