forked from Jellby/Pegamoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.07 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import re
with open("README.md", "r") as f:
# Remove screenshots
long_description = re.sub('Screenshots\n-*\n*(<.*> *\n*)*', '', f.read())
setup(name='Pegamoid',
version='2.6.1',
description='Orbital viewer for OpenMolcas',
author=u'Ignacio Fdez. Galván',
author_email='[email protected]',
url='https://gitlab.com/Jellby/Pegamoid',
license='GPL v3.0',
scripts=['pegamoid.py'],
install_requires=['numpy (>=1.9.0)', 'h5py', 'VTK (>=8.1.0)', 'qtpy', 'future (>=0.15.2);python_version<"3.0"' ],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Environment :: X11 Applications :: Qt',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
],
)