-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
67 lines (57 loc) · 2.08 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
# -*- coding: utf-8 -*-
__author__ = 'arkilic'
try:
from setuptools import setup, find_packages
except ImportError:
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
import versioneer
import os
import sys
min_version = (3, 8)
if sys.version_info < min_version:
error = """
analysisstore 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 = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as readme_file:
readme = readme_file.read()
with open(os.path.join(here, "requirements.txt")) as requirements_file:
# Parse requirements.txt, ignoring any commented-out lines.
requirements = [line for line in requirements_file.read().splitlines() if not line.startswith("#")]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='analysisstore',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Prototype analysis results database (for the MX beamlines)",
long_description=readme,
install_requires=requirements,
license="BSD (3-clause)",
url="https://github.com/NSLS-II/analysisstore.git",
python_requires=">={}".format(".".join(str(n) for n in min_version)),
packages=find_packages(),
package_data={'analysisstore': ['schemas/*.json']},
include_package_data=True,
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)