-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (41 loc) · 3.88 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
"""
$$$$$$\ $$\ $$\ $$\ $$\
$$ __$$\ $$ | $$ | $$ |\$$\
$$ / \__| $$$$$$\ $$$$$$\ $$\ $$\ $$$$$$\ $$ / $$ / \$$\
\$$$$$$\ $$ __$$\\_$$ _| $$ | $$ |$$ __$$\ $$ / $$ / \$$\
\____$$\ $$$$$$$$ | $$ | $$ | $$ |$$ / $$ | \$$< $$ / $$ |
$$\ $$ |$$ ____| $$ |$$\ $$ | $$ |$$ | $$ | \$$\ $$ / $$ /
\$$$$$$ |\$$$$$$$\ \$$$$ |\$$$$$$ |$$$$$$$ | \$$\ $$ / $$ /
\______/ \_______| \____/ \______/ $$ ____/ \__|\__/ \__/
$$ |
$$ |
\__|
██╗ ███████╗███████╗ █████╗ ██╗ ██╗██╗███████╗███████╗██╗ ██╗ ██████╗ ██╗ ██╗███████╗ ██╗ ██╗ ██████╗ ██████╗ ███████╗
██║ ██╔════╝██╔════╝██╔══██╗██║ ██║██║██╔════╝╚══███╔╝██║ ██║██╔═══██╗██║ ██║██╔════╝ ██║ ██║██╔═████╗ ╚════██╗ ██╔════╝
██║ █████╗ ███████╗███████║██║ ██║██║█████╗ ███╔╝ ██║ ██║██║ ██║██║ ██║███████╗ ██║ ██║██║██╔██║ █████╔╝ ███████╗
██║ ██╔══╝ ╚════██║██╔══██║╚██╗ ██╔╝██║██╔══╝ ███╔╝ ╚██╗ ██╔╝██║ ██║██║ ██║╚════██║ ╚██╗ ██╔╝████╔╝██║ ██╔═══╝ ╚════██║
███████╗███████╗███████║██║ ██║ ╚████╔╝ ██║███████╗███████╗ ╚████╔╝ ╚██████╔╝╚██████╔╝███████║ ╚████╔╝ ╚██████╔╝██╗███████╗██╗███████║
╚══════╝╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝╚══════╝╚══════╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═══╝ ╚═════╝ ╚═╝╚══════╝╚═╝╚══════╝
"""
from setuptools import setup, find_packages
from readme_renderer.markdown import render
long_description = ""
with open('README.md', encoding='utf-8') as file:
long_description = file.read()
setup(
name="lesaviezvous",
version="0.2.5",
author="Coding Team",
author_email="codingteam@telegmail.com",
license='MIT',
description='Un package Python pour obtenir des informations intéressantes du monde.',
long_description=render(long_description),
long_description_content_type="text/markdown",
url="https://github.com/codingtuto/lesaviezvouspkg/",
packages=find_packages(exclude=["testing"]),
python_requires='>=3.7',
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Utilities"
],
)