fasttyper/setup.py

33 lines
963 B
Python
Raw Permalink Normal View History

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()
2022-03-06 19:41:49 +01:00
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read().splitlines()
2021-07-11 13:16:06 +02:00
setup(
2021-07-23 14:54:10 +02:00
name="fasttyper",
2024-05-24 13:56:28 +02:00
version="2.4.2",
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",
2024-07-19 11:01:56 +02:00
url="https://git.domandoman.xyz/doman/fasttyper",
2021-07-11 13:16:06 +02:00
classifiers=[
"Programming Language :: Python :: 3",
"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",
2022-03-06 19:41:49 +01:00
install_requires=requirements,
2022-02-12 22:45:26 +01:00
entry_points={
"console_scripts": [
"fasttyper=fasttyper.runner:runner",
]
},
2021-07-11 13:16:06 +02:00
)