-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 714 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 714 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
from setuptools import setup
setup(
name='pyparallax',
version='0.1',
packages=['parallax'],
install_requires=['pygame'],
url='https://github.com/forslund/pyParallax',
license='Apache-2.0',
author='Åke Forslund',
author_email='ake.forslund@gmail.com',
description='A simple parallax effect using pygame',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)