-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.2 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
from distutils.core import setup
from setuptools import setup
setup ( #méthode setup qui permettra l’installation de la librairie sur le système
name='lib_projet' ,
version = '1.0' ,
author= 'Groupe',
author_email= '[email protected]',
description = ' Cette libraire en Python permet dautomatiser la parallélisation maximale de systèmes de tâches'
licence = "gggg'
keywords = ''
url = " lokik"
packages=[ #Packages de la librairie
'lib_projet'
],
long_description=open('README.md').read(), #Fichier README contenant le role de la librairie
classifiers=[
' Development statut :: 4 - Beta' ,
'Intended Audience :: Developers' ,
'License :: Proprietary Llicense',
'Natural Language :: French',
'Operating System :: OS Iindependent',
'Operating System :: Python :: 3.7' ,
'Topic :: Software Development' ,
'Topic :: Software Development :: Libraries :: Python Modules' ,
"Topic :: Utilities"
]
install_requires=[
'pymongo==3.7.2'
],
include_package_data=True
)