11 lines
226 B
Python
11 lines
226 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="QElephant",
|
|
version="1.0.2",
|
|
description="",
|
|
author="Didictateur",
|
|
author_email="decosse.adrien@gmail.com",
|
|
packages=["QElephant"],
|
|
install_requires=[],
|
|
)
|