-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 901 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
24
25
26
27
28
29
from setuptools import setup, find_packages
setup(
name='libinstall',
version='0.1',
packages=find_packages(),
author="Raphael Krief",
author_email="[email protected]",
description="Installe les librairies python necessaire d'un projet",
long_description=open('README.md').read(),
url="https://github.com/Raphencoder/libinstall",
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"License :: OSI Approved",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
py_modules=['libinstall'],
install_requires=[
'Click',
],
entry_points={
'console_scripts': ['libinstall=libinstall.script:cli'],
},
license="BSD 3-Clause License"
)