float_raster/setup.py

35 lines
1.3 KiB
Python
Raw Normal View History

2018-09-16 20:04:46 -07:00
#!/usr/bin/env python3
2016-03-15 20:26:21 -07:00
2016-03-27 17:30:16 -07:00
from setuptools import setup
2018-09-16 20:05:13 -07:00
import float_raster
2016-03-15 20:26:21 -07:00
2018-09-16 20:06:57 -07:00
with open('README.md', 'r') as f:
long_description = f.read()
2016-03-15 20:26:21 -07:00
setup(name='float_raster',
2018-09-16 20:05:13 -07:00
version=float_raster.version,
2016-03-15 20:26:21 -07:00
description='High-precision anti-aliasing polygon rasterizer',
2018-09-16 20:06:57 -07:00
long_description=long_description,
long_description_content_type='text/markdown',
2016-03-15 20:26:21 -07:00
author='Jan Petykiewicz',
author_email='anewusername@gmail.com',
2019-02-09 19:38:15 -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
],
2019-04-07 17:12:31 -07:00
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
],
2016-03-22 14:38:47 -07:00
)