float_raster/setup.py

43 lines
1.5 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
from setuptools import setup, find_packages
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()
with open('float_raster/VERSION', 'r') as f:
version = f.read().strip()
2016-03-15 20:26:21 -07:00
setup(name='float_raster',
version=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',
packages=find_packages(),
package_data={
'float_raster': ['VERSION',
'py.typed',
]
},
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
)