added setup
This commit is contained in:
parent
04823640eb
commit
9ff9662b7e
1 changed files with 22 additions and 0 deletions
22
setup.py
Normal file
22
setup.py
Normal file
|
@ -0,0 +1,22 @@
|
|||
from setuptools import find_packages, setup
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup(
|
||||
name="fasttyper-pkg-ickyicky",
|
||||
version="0.0.1",
|
||||
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",
|
||||
"License :: GPLv3+",
|
||||
"Operating System :: OS Independent",
|
||||
],
|
||||
packages=find_packages(),
|
||||
python_requires=">=3.6",
|
||||
)
|
Loading…
Reference in a new issue