24 lines
682 B
Python
24 lines
682 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup,find_packages
|
|
from ChaChaGameStats._version import __version__ as ChaChaGameStats_ver
|
|
|
|
with open("./README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name='ChaChaGameStats',
|
|
version=ChaChaGameStats_ver,
|
|
description='Games Statistics utility',
|
|
author='Clement CHASTANIER',
|
|
author_email='clement.chastanier@gmail.com',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url='https://github.com/cclecle/ChaChaGameStats',
|
|
packages=find_packages(),
|
|
install_requires=['lxml'],
|
|
license="CC BY-NC-SA 4.0",
|
|
python_requires='>=3.8',
|
|
),
|
|
|