-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (58 loc) · 1.92 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
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]
if len(revision) > 0:
ret = '+dev' + revision
else:
ret = ''
except: # noqa
ret = ''
return ret
# 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()
VERSION = VERSIONPIP + get_revision()
with open(os.path.join('py', 'minimint', '_version.py'), 'w') as fp:
print('version="%s"' % (VERSION), file=fp)
setup(
name="minimint",
version=VERSION,
author="Sergey Koposov",
author_email="[email protected]",
description="MIST Isochrone interpolation",
license="BSD",
keywords="isochrone interpolation",
url="http://github.com/segasai/minimint",
packages=['minimint'],
scripts=[fname for fname in glob.glob(os.path.join('bin', '*'))],
package_dir={'': 'py'},
package_data={'minimint': ['tests']},
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)