generated from Franck1333/FR_Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (19 loc) · 747 Bytes
/
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
#HOW INSTALL AND USE THIS PROJECT:
#in the console : sudo python setup.py install
#And all the depencies will be installed with the Project
from setuptools import setup, find_packages
setup(
name='Projet Gabriel',
version="0.13",
author='Franck Rochat',
author_email='[email protected]',
description="Projet d'agrégation d'actualité via mots clés.",
url='https://github.com/Franck1333/Projet-Gabriel',
license='lgpl',
packages=find_packages(),
include_package_data=True,
install_requires=["psutil","setuptools","feedparser","reportlab"], #Get the Dependencies from Pypi (pip install)
#dependency_links=[''], #Get the Dependencies via HTTP(s)
)