gridlock/setup.py

43 lines
1.4 KiB
Python
Raw Normal View History

2018-09-16 19:55:28 -07:00
#!/usr/bin/env python3
2016-03-15 20:07:07 -07:00
2016-03-27 17:28:31 -07:00
from setuptools import setup, find_packages
2018-09-16 20:00:36 -07:00
import gridlock
2016-03-15 20:07:07 -07:00
2018-09-16 20:00:51 -07:00
with open('README.md', 'r') as f:
long_description = f.read()
2016-03-15 20:11:17 -07:00
setup(name='gridlock',
2018-09-16 20:00:36 -07:00
version=gridlock.version,
2016-03-15 20:11:17 -07:00
description='Coupled gridding library',
2018-09-16 20:00:51 -07:00
long_description=long_description,
long_description_content_type='text/markdown',
2016-03-15 20:07:07 -07:00
author='Jan Petykiewicz',
author_email='anewusername@gmail.com',
2018-01-15 22:55:34 -08:00
url='https://mpxd.net/code/jan/gridlock',
2016-03-27 17:21:57 -07:00
packages=find_packages(),
2016-03-22 14:40:29 -07:00
install_requires=[
2016-03-27 16:17:27 -07:00
'numpy',
'float_raster',
2016-03-22 14:40:29 -07:00
],
extras_require={
'visualization': ['matplotlib'],
'visualization-isosurface': [
'matplotlib',
2018-01-15 22:56:45 -08:00
'skimage>=0.13',
2016-03-22 14:40:29 -07:00
'mpl_toolkits',
],
},
2019-04-07 17:16:40 -07:00
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
],
2016-03-22 14:40:29 -07:00
)
2016-03-15 20:07:07 -07:00