forked from xpdAcq/xpdAcq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (51 loc) · 1.6 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
import sys
from os import path
from setuptools import setup, find_packages
# 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 = ("\n"
"pdfstream does not support Python {0}.{1}.\n"
"Python {2}.{3} and above is required. Check your Python version like so:\n"
"\n"
"python3 --version\n"
"\n"
"This may be due to an out-of-date pip. Make sure you have pip >= 9.0.1.\n"
"Upgrade pip like so:\n"
"\n"
"pip install --upgrade pip\n").format(*(sys.version_info[:2] + min_version))
sys.exit(error)
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name="xpdacq",
version='1.1.4',
packages=find_packages(),
long_description=readme,
long_description_content_type='text/markdown',
description="acquisition module",
zip_safe=False,
package_data={
"xpdacq": [
"data/*.D",
"tests/*.D",
"tests/*.xls*",
"tests/*.yml",
"examples/*.yaml",
]
},
author="Songsheng Tao",
author_email='[email protected]',
url="https://github.com/xpdAcq/xpdacq",
install_requires=[
"numpy>=1.11",
"matplotlib>=1.5.1",
"pyyaml",
"boltons",
"bluesky>=v0.5.1",
"event_model",
]
)