Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jiadongdan committed Jun 28, 2024
1 parent 601c2c3 commit fd07b57
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
from setuptools import setup, find_packages

setup(
name='vidar',
version='0.1.0',
author='the VIDAR team',
author_email='[email protected]',
description='A Python library for scientific interactive plot',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/jiadongdan/VIDAR',
packages=find_packages(),
install_requires=[
'numpy>=1.18.0',
'matplotlib>=3.1.0',
'pandas',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Visualization',
],
python_requires='>=3.6',
keywords='visualization, interactive, scientific plot',
)

0 comments on commit fd07b57

Please sign in to comment.