-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 786 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
# Use README for the PyPI page
with open('README.md') as f:
long_description = f.read()
# https://setuptools.readthedocs.io/en/latest/setuptools.html
setup(name='collision',
author='qwertyquerty',
url='https://github.com/QwekoDev/collision/',
version='1.2.2',
packages=['collision'],
python_requires='>=3.5',
platforms=['Windows', 'Linux', 'OSX'],
zip_safe=True,
license='MIT',
description='Collision is a python library meant for collision detection between convex and concave polygons, circles, and points.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='python collision detection polygon concave convex circle physics game',
)