2016-03-15 20:26:21 -07:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-03-27 17:30:16 -07:00
|
|
|
from setuptools import setup
|
2016-03-15 20:26:21 -07:00
|
|
|
|
|
|
|
setup(name='float_raster',
|
2017-10-17 12:57:06 -07:00
|
|
|
version='0.4',
|
2016-03-15 20:26:21 -07:00
|
|
|
description='High-precision anti-aliasing polygon rasterizer',
|
|
|
|
author='Jan Petykiewicz',
|
|
|
|
author_email='anewusername@gmail.com',
|
2018-01-15 22:33:36 -08:00
|
|
|
url='https://mpxd.net/code/jan/float_raster',
|
2016-03-15 20:28:39 -07:00
|
|
|
py_modules=['float_raster'],
|
2016-03-22 14:38:47 -07:00
|
|
|
install_requires=[
|
2016-07-13 16:39:37 -07:00
|
|
|
'numpy',
|
|
|
|
'scipy',
|
2016-03-22 14:38:47 -07:00
|
|
|
],
|
|
|
|
)
|