-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
69 lines (60 loc) · 2.04 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
from __future__ import print_function
import os
from setuptools import setup
import glob
import subprocess
def get_revision():
"""
Get the git revision of the code
Returns:
--------
revision : string
The string with the git revision
"""
try:
tmpout = subprocess.Popen('cd ' + os.path.dirname(__file__) +
' ; git log -n 1 --pretty=format:%H',
shell=True,
bufsize=80,
stdout=subprocess.PIPE).stdout
revision = tmpout.read().decode()[:6]
return revision
except:
return ''
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSIONPIP = read('version.txt').rstrip()
print(get_revision())
VERSION = VERSIONPIP + '+dev' + get_revision()
with open('py/rvspecfit/_version.py', 'w') as fp:
print('version="%s"' % (VERSION), file=fp)
setup(
name="rvspecfit",
version=VERSION,
author="Sergey Koposov",
author_email="skoposov@ed.ac.uk",
description=("Radial velocity and stellar parameter measurement code."),
license="BSD",
keywords="stellar spectra radial velocity",
url="http://github.com/segasai/rvspecfit",
packages=[
'rvspecfit', 'rvspecfit/desi', 'rvspecfit/weave', 'rvspecfit/nn'
],
scripts=[fname for fname in glob.glob(os.path.join('bin', '*'))],
zip_safe=False,
package_dir={'': 'py/'},
package_data={'rvspecfit': ['tests/']},
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
setup_requires=["cffi>=1.0.0"],
cffi_modules=["py/rvspecfit/ffibuilder.py:ffibuilder"],
install_requires=["cffi"],
)