2021-07-11 13:16:06 +02:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setup(
|
2021-07-23 14:54:10 +02:00
|
|
|
name="fasttyper",
|
2022-02-03 14:04:08 +01:00
|
|
|
version="1.3.1",
|
2021-07-11 13:16:06 +02:00
|
|
|
author="Piotr Domanski",
|
|
|
|
author_email="pi.domanski@gmail.com",
|
|
|
|
description="Minimalistic typing exercise",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/ickyicky/fasttyper",
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
2021-07-11 13:33:40 +02:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
2021-07-11 13:16:06 +02:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
packages=find_packages(),
|
|
|
|
python_requires=">=3.6",
|
|
|
|
)
|