Add files via upload
This commit is contained in:
parent
31661bbf11
commit
23558bf871
24
setup.py
Normal file
24
setup.py
Normal file
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import setuptools
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setuptools.setup(
|
||||
name="Tetris2000",
|
||||
version="0.2",
|
||||
author="Adrien Malin",
|
||||
author_email="adrien.malin@protonmail.com",
|
||||
description="Another Tetris clone",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/adrienmalin/Tetris2000",
|
||||
packages=setuptools.find_packages(),
|
||||
classifiers=(
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
),
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user