-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (32 loc) · 1.27 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
from setuptools import setup
version='0.4.0'
setup(name='pyxpad',
version=version,
description='Data visualisation and analysis tool for IDAM',
author='Ben Dudson',
author_email='[email protected]',
maintainer='Peter Hill',
maintainer_email='[email protected]',
url='https://github.com/ZedThree/pyxpad/',
download_url='https://github.com/ZedThree/pyxpad/archive/{0}.tar.gz'.format(version),
license='GPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
],
packages=['pyxpad'],
install_requires=['matplotlib>=3.1', 'numpy>=1.15', 'scipy>=1.4', 'Qt.py>=1.2', 'xdg>=4.0.1'],
entry_points={
'gui_scripts': [
'pyxpad = pyxpad.__main__:main',
],
},
)