-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
executable file
·36 lines (32 loc) · 1023 Bytes
/
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
35
#!/usr/bin/env python
import sys
from distutils.core import setup
import igor
if len(sys.argv) == 1:
sys.argv.append('install')
# README.rst is only needed to upload the package;
# it isn't needed for download and install.
try:
long_description = open('README.rst').read()
except:
long_description = None
dist = setup(
name = 'igor.py',
version = igor.__version__,
author='Paul Kienzle',
author_email='[email protected]',
url='https://github.com/reflectometry/igor.py',
description='Read Igor Pro files from python',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
py_modules = ['igor'],
#data_files = ['README.rst'],
)
# End of file