-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.12 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
from setuptools import setup
description = "I have yet to write this"
# specify requirements of your package here
REQUIREMENTS = ['pygame']
# some more details
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
# calling the setup function
setup(name='pyLdtk',
version='0.0.3',
description='Just some quick and simple groundwork for working with ldtk in python. VERY EARLY STAGES!',
long_description=description,
url='https://github.com/LGgameLAB/pyLdtk',
author='Luke Gonsalves',
author_email='lukegonsalves07@gmail.com',
license='MIT',
packages=['pyLdtk'],
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
keywords='ldtk LDTK python pygame py Tiled tile tileset game'
)