-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 2.01 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (48 loc) · 2.01 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# encoding: utf-8
import os
import sys
#from setuptools import setup, find_packages
#import fix_setuptools_chmod
try:
from setuptools import find_packages
except ImportError:
from distutils.core import find_packages
from distutils.core import Extension, setup
if len(sys.argv) == 1:
sys.argv.append('install')
dist = setup(
name = 'cleed-gui',
packages = find_packages(),
version='0.1.0-dev',
author='Liam Deacon',
author_email='liam.deacon@diamond.ac.uk',
license='GNU General Public License v3.0',
url='https://pypi.python.org/pypi/cleed-gui',
description='CLEED front-end for handling LEED-IV calculations',
long_description=open(os.path.join('src', 'README.rst')
).read() if os.path.isfile('README.rst') else None,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
],
keywords='cleed-gui LEED-IV diffraction',
include_package_data = True,
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', '*.pyw'],
},
scripts=[os.path.join("src", "cleed-gui.pyw"),
os.path.join("src", "core", "rfactor.py")],
install_requires = ['PySide', 'IPython', 'numpy', 'scipy', 'cython',
'matplotlib', 'pymol', 'phaseshifts'],
ext_modules=[],
window=[os.path.join("src", "cleed-gui.pyw")],
)