forked from ideasman42/isect_segments-bentley_ottmann
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 713 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='isect_segments-bentley_ottmann',
version='0.1.0',
license='MIT',
description='BentleyOttmann sweep-line implementation',
author='Campbell Barton',
author_email='[email protected]',
url='https://github.com/ideasman42/isect_segments-bentley_ottmann',
py_modules=['poly_point_isect'],
zip_safe=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)