forked from Mekire/pygame-button
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 841 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import setuptools
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="pygame_button",
version="0.0.3",
py_modules=["pygame_button"],
author="Layerex",
author_email="layerex@dismail.de",
description="A very simple button class for pygame.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Layerex/pygame_button",
packages=setuptools.find_packages(),
install_requires=["pygame"],
classifiers=[
"Development Status :: 7 - Inactive",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: pygame",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)