-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 712 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
README = open('README.md').read()
setup(name='desper',
classifiers=['Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Games/Entertainment'],
python_requires='>=3.9',
version='1.1.1post',
description='A Python3 game development toolkit for resource and logic '
'management',
long_description_content_type='text/markdown',
long_description=README,
url='http://github.com/Ball-Man/desper',
author='Francesco Mistri',
author_email='franc.mistri@gmail.com',
license='MIT',
packages=find_packages(),
)