-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (37 loc) · 1.33 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
""" A setuptools based setup module """
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='peachy',
# Version (PEP440)
version='0.1.0',
description='A python3 game development framework',
long_description=open('README.rst').read(),
url='https://github.com/shellbotx/peachy',
author='Sheldon Allen (shellbot)',
author_email='studio.shellbot@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Topic :: Documentation :: Sphinx',
'Topic :: Games/Entertainment',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: pygame',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords='peachy pygame gamedev game gaming development 2d graphics',
packages=find_packages(),
install_requires=[
'pygame',
'pytmx'
]
)