-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
39 lines (38 loc) · 1.45 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
from setuptools import setup, find_packages
setup(
name='solarwolf',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries :: pygame',
'Topic :: Games/Entertainment :: Arcade',
],
license='LGPL',
author='Pete "ShredWheat" Shinners',
author_email='pete@shinners.org',
maintainer='Rene Dudfield',
maintainer_email='renesd@gmail.com',
description='SolarWolf is an action/arcade game written entirely in Python.',
include_package_data=True,
long_description='SolarWolf is an action/arcade game written entirely in Python.',
package_dir={'solarwolf': 'solarwolf'},
packages=find_packages(),
# package_data={'solarwolf': []},
url='https://github.com/pygame/solarwolf',
install_requires=['pygame'],
version='1.6.0',
entry_points={
'console_scripts': [
'solarwolf=solarwolf.cli:main',
],
},
)