float_raster/setup.py

13 lines
346 B
Python
Raw Normal View History

2016-03-15 20:26:21 -07:00
#!/usr/bin/env python
from distutils.core import setup
setup(name='float_raster',
version='0.1',
description='High-precision anti-aliasing polygon rasterizer',
author='Jan Petykiewicz',
author_email='anewusername@gmail.com',
url='https://mpxd.net/gogs/jan/float_raster',
py_modules=['float_raster'],
2016-03-15 20:26:21 -07:00
)