This repository was archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
64 lines (47 loc) · 1.71 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
from setuptools import setup
from codecs import open
import os
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
def prerelease_local_scheme(version):
"""Return local scheme version unless building on master in CircleCI.
This function returns the local scheme version number
(e.g. 0.0.0.dev<N>+g<HASH>) unless building on CircleCI for a
pre-release in which case it ignores the hash and produces a
PEP440 compliant pre-release version number (e.g. 0.0.0.dev<N>).
"""
from setuptools_scm.version import get_local_node_and_date
if 'CIRCLE_BRANCH' in os.environ and \
os.environ.get('CIRCLE_BRANCH') == 'master':
return ''
else:
return get_local_node_and_date(version)
setup(
name='girder-jupyterhub',
use_scm_version={'local_scheme': prerelease_local_scheme},
setup_requires=['setuptools_scm'],
description='A JupyterHub authenticator for Girder tokens',
long_description=long_description,
url='https://github.com/cjh1/girder_jupyterhub',
author='Kitware Inc',
author_email='kitware@kitware.com',
license='BSD 3-Clause',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
keywords='jupyter girder authentication data management',
packages=['girder_jupyterhub', 'girder_jupyterhub.auth'],
install_requires=[
'jupyterhub>0.8',
'traitlets',
'tornado'
],
extras_require={
}
)