Files
ChaChaGameStats/setup.py
cclecle 291046c3b8 - add license header
- update license to CC BY-NC-SA 4.0
- create setup.py
- add versioning
- improve README
2022-01-04 16:01:41 +01:00

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',
),