-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (30 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup( name = "pyDataView",
version = "2.0.2",
author = ["Edward Smith"],
author_email = "[email protected]",
url = "https://github.com/edwardsmith999/pyDataView",
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6'],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
keywords='visualisation scientific data',
license = "GPL",
install_requires=['numpy', 'scipy', 'matplotlib', 'wxpython', 'vispy', ],
extras_require = {'Channelflow_plots': ["h5py"],
'cpl_plots':["scikit-image"]},
description = "Data Viewer GUI written in python, wxpython and matplotlib",
long_description = long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'pyDataView=pyDataView:main',
],
},
)