-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·95 lines (83 loc) · 3.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/env python
# Installation script for diffpy.Structure
"""srxplanar - 2D diffraction image integration and uncertainty propagation
using non splitting pixel algorithm
Packages: diffpy.srxplanar
"""
import os
from setuptools import setup, find_packages
# versioncfgfile holds version data for git commit hash and date.
# It must reside in the same directory as version.py.
MYDIR = os.path.dirname(os.path.abspath(__file__))
versioncfgfile = os.path.join(MYDIR, 'diffpy/srxplanar/version.cfg')
def gitinfo():
from subprocess import Popen, PIPE
kw = dict(stdout=PIPE, cwd=MYDIR)
proc = Popen(['git', 'describe', '--match=v[[:digit:]]*'], **kw)
desc = proc.stdout.read()
proc = Popen(['git', 'log', '-1', '--format=%H %at %ai'], **kw)
glog = proc.stdout.read()
rv = {}
rv['version'] = '-'.join(desc.strip().split('-')[:-1]).lstrip('v')
rv['commit'], rv['timestamp'], rv['date'] = glog.strip().split(None, 2)
return rv
def getversioncfg(config=versioncfgfile):
from ConfigParser import SafeConfigParser
cp = SafeConfigParser()
cp.read(config)
gitdir = os.path.join(MYDIR, '.git')
if not os.path.exists(gitdir): return cp
d = cp.defaults()
g = gitinfo()
if g['version'] != d.get('version') or g['commit'] != d.get('commit'):
cp.set('DEFAULT', 'version', g['version'])
cp.set('DEFAULT', 'commit', g['commit'])
cp.set('DEFAULT', 'date', g['date'])
cp.set('DEFAULT', 'timestamp', g['timestamp'])
cp.write(open(config, 'w'))
return cp
# generate version.cfg for diffpy.confutils
versioncfgfile1 = os.path.join(MYDIR, 'diffpy/confutils/version.cfg')
getversioncfg(versioncfgfile1)
versiondata = getversioncfg(versioncfgfile)
# define distribution
setup_args = dict(
name="diffpy.srxplanar",
version=versiondata.get('DEFAULT', 'version'),
namespace_packages=['diffpy'],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
# define console_scripts here, see setuptools docs for details.
'console_scripts' : ['srxplanar = diffpy.srxplanar.srxplanar:main'
],
},
author='Simon J.L. Billinge',
author_email='[email protected]',
maintainer='Xiaohao Yang',
maintainer_email='[email protected]',
url='https://github.com/diffpy/diffpy.srxplanar',
description="2D diffraction image integration and uncertainty propagation",
license='BSD-style license',
keywords="diffpy planar integration non-splitting uncertainty",
classifiers=[
# List of possible values at
# http://pypi.python.org/pypi?:action=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
],
)
if __name__ == '__main__':
setup(**setup_args)
# End of file