-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
88 lines (75 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import versioneer
from setuptools import setup, find_packages
import sys
# To use a consistent encoding
from codecs import open
from os import path
# NOTE: This file must remain Python 2 compatible for the foreseeable future,
# to ensure that we error out properly for people with outdated setuptools
# and/or pip.
min_version = (3, 6)
if sys.version_info < min_version:
error = """
databroker does not support Python {0}.{1}.
Python {2}.{3} and above is required. Check your Python version like so:
python3 --version
This may be due to an out-of-date pip. Make sure you have pip >= 9.0.1.
Upgrade pip like so:
pip install --upgrade pip
""".format(*(sys.version_info[:2] + min_version))
sys.exit(error)
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 read_requirements(filename):
with open(path.join(here, filename)) as requirements_file:
# Parse requirements-*.txt, ignoring any commented-out lines.
requirements = [
line
for line in requirements_file.read().splitlines()
if not line.startswith("#")
]
return requirements
extras_require = {
key: read_requirements(f"requirements-{key}.txt") for key in ["client", "server", "back-compat"]
}
extras_require["complete"] = sorted(set(sum(extras_require.values(), [])))
extras_require["all"] = extras_require["complete"] # for back-compat
setup(
name='databroker',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
# Author details
author='Brookhaven National Laboratory',
packages=find_packages(),
description='Unification of NSLS-II data sources',
long_description=long_description,
long_description_content_type='text/markdown',
package_data={'databroker.assets': ['schemas/*.json']},
# The project's main homepage.
url='https://github.com/NSLS-II/databroker',
scripts=['scripts/fs_rename'],
license='BSD (3-clause)',
install_requires=['tiled[minimal-client]'],
extras_require=extras_require,
python_requires='>={}'.format('.'.join(str(n) for n in min_version)),
entry_points={
"console_scripts": ["databroker = databroker.cli:main"],
"tiled.special_client": [
"CatalogOfBlueskyRuns = databroker.client:CatalogOfBlueskyRuns",
"BlueskyRun = databroker.client:BlueskyRun",
"BlueskyEventStream = databroker.client:BlueskyEventStream",
],
},
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)