forked from jpgill86/neurotic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
127 lines (115 loc) · 4.93 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# -*- coding: utf-8 -*-
"""
"""
import os
import subprocess
from setuptools import setup, find_packages
# Change version number here, not in neurotic/version.py, which is generated
# by this script. Try to follow recommended versioning guidelines at semver.org.
MAJOR = 1 # increment for backwards-incompatible changes
MINOR = 5 # increment for backwards-compatible feature additions
MICRO = 1 # increment for backwards-compatible bug fixes
IS_RELEASED = False # determines whether version will be marked as development
VERSION = f'{MAJOR}.{MINOR}.{MICRO}'
# Try to fetch the git revision number from the .git directory if it exists,
# as well as whether the working directory is dirty or not.
if os.path.exists('.git'):
try:
out = subprocess.Popen(['git', 'rev-parse', 'HEAD'],
stdout=subprocess.PIPE).communicate()[0]
GIT_REVISION = out.strip().decode('ascii')
out = subprocess.Popen(['git', 'diff', '--stat'],
stdout=subprocess.PIPE).communicate()[0]
if out.strip().decode('ascii'):
GIT_DIRTY = True
else:
GIT_DIRTY = False
except OSError:
GIT_REVISION = 'unknown'
GIT_DIRTY = None
# If the .git directory is absent (perhaps because this is a source distro), or
# if git is not available, try to fetch the rev number and dirty state from
# neurotic/version.py where it may have been stored during packaging.
elif os.path.exists('neurotic/version.py'):
try:
v = {}
with open('neurotic/version.py', 'r') as f:
exec(f.read(), v)
GIT_REVISION = v['git_revision']
GIT_DIRTY = v['git_dirty']
except ImportError:
raise ImportError('Unable to import git_revision. Try removing ' \
'neurotic/version.py and the build directory ' \
'before building.')
else:
GIT_REVISION = 'unknown'
GIT_DIRTY = None
# If this is not a release version, mark it as a development build/distro and
# tag it with the git revision number and dirty state.
if not IS_RELEASED:
VERSION += '.dev0+git.' + GIT_REVISION[:7]
if GIT_DIRTY:
VERSION += '.dirty'
# Write the version string to a file that will be included with the
# build/distro. This makes the string accessible to the package via
# neurotic.__version__. The git revision and dirty state are also written in
# case a source distro is being built, so that they can be fetched later during
# installation.
with open('neurotic/version.py', 'w') as f:
try:
f.write('"""THIS FILE WAS GENERATED BY SETUP.PY DURING BUILDING/PACKAGING"""\n')
f.write(f'version = \'{VERSION}\'\n')
f.write(f'git_revision = \'{GIT_REVISION}\'\n')
f.write(f'git_dirty = {GIT_DIRTY}\n')
finally:
f.close()
# Read in the README to serve as the long_description, which will be presented
# on pypi.org as the project description.
with open('README.rst', 'r') as f:
README = f.read()
with open('requirements.txt', 'r') as f:
install_requires = f.read()
extras_require = {}
with open('requirements-docs.txt', 'r') as f:
extras_require['docs'] = f.read()
with open('requirements-notebook.txt', 'r') as f:
extras_require['notebook'] = f.read()
with open('requirements-tests.txt', 'r') as f:
extras_require['tests'] = f.read()
setup(
name = 'neurotic',
version = VERSION,
description = 'Curate, visualize, annotate, and share your behavioral ephys data using Python',
packages = find_packages(),
include_package_data = True,
install_requires = install_requires,
extras_require = extras_require,
entry_points = {'console_scripts': ['neurotic=neurotic.scripts:main']},
long_description = README,
keywords = ['neuroscience', 'electrophysiology', 'visualization',
'video-sync', 'data-management', 'data-sharing', 'download-manager',
'annotation-tool', 'open-science', 'python-neo'],
author = 'Jeffrey Gill',
author_email = '[email protected]',
license = 'MIT',
url = 'https://github.com/jpgill86/neurotic',
project_urls = {
'Documentation': 'https://neurotic.readthedocs.io',
'Source code': 'https://github.com/jpgill86/neurotic',
'Bug tracker': 'https://github.com/jpgill86/neurotic/issues',
'Change log': 'https://neurotic.readthedocs.io/en/latest/releasenotes.html',
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
],
)