float_raster/setup.py

17 lines
418 B
Python
Raw Permalink Normal View History

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',
py_modules=['float_raster'],
2016-03-22 14:38:47 -07:00
install_requires=[
'numpy',
'scipy',
2016-03-22 14:38:47 -07:00
],
)