forked from ColmTalbot/dynamical_population_models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
82 lines (67 loc) · 2.69 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import subprocess
import os
def write_version_file(version):
""" Writes a file with version information to be used at run time
Parameters
----------
version: str
A string containing the current version information
Returns
-------
version_file: str
A path to the version file
"""
try:
git_log = subprocess.check_output(
['git', 'log', '-1', '--pretty=%h %ai']).decode('utf-8')
git_diff = (subprocess.check_output(['git', 'diff', '.']) +
subprocess.check_output(
['git', 'diff', '--cached', '.'])).decode('utf-8')
if git_diff == '':
git_status = '(CLEAN) ' + git_log
else:
git_status = '(UNCLEAN) ' + git_log
except Exception as e:
print("Unable to obtain git version information, exception: {}"
.format(e))
git_status = ''
version_file = '.version'
if os.path.isfile(version_file) is False:
with open('dynamical_population_models/' + version_file, 'w+') as f:
f.write('{}: {}'.format(version, git_status))
return version_file
def get_long_description():
""" Finds the README and reads in the description """
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
long_description = f.read()
return long_description
# get version info from __init__.py
def readfile(filename):
with open(filename) as fp:
filecontents = fp.read()
return filecontents
VERSION = '0.0.1'
version_file = write_version_file(VERSION)
long_description = get_long_description()
setup(name='dynamical_population_models',
description='Population inference models for binaries in globular clusters',
long_description=long_description,
url='https://github.com/ColmTalbot/dynamical_population_models',
author='Colm Talbot',
author_email='[email protected]',
license="MIT",
version=VERSION,
packages=find_packages(exclude=["test"]),
package_dir={'dynamical_population_models': 'dynamical_population_models'},
package_data={'dynamical_population_models': [version_file, "grid_dict_5e5",
"grid_dict_1e7","grid_dict_1e8",
"grid_dict_0"]},
install_requires=['bilby', 'gwpopulation', 'numpy>=1.16'],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"])