This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
forked from ethall/syphon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
65 lines (54 loc) · 1.94 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
#!/usr/bin/env python
"""setup.py
Copyright Keithley Instruments, LLC.
Licensed under MIT (https://github.com/tektronix/syphon/blob/master/LICENSE)
"""
import io
import os
from setuptools import find_packages, setup
import versioneer
HERE = os.path.abspath(os.path.dirname(__file__))
# Import README to use as the long-description
with io.open(os.path.join(HERE, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = "\n" + f.read()
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
PROJECT_URLS = {
"Source": "https://github.com/tektronix/syphon",
"Tracker": "https://github.com/tektronix/syphon/issues",
}
INSTALL_REQUIRES = ["pandas~=1.0", "sortedcontainers~=2.2"]
ENTRY_POINTS = {"console_scripts": ["syphon=syphon.__main__:main"]}
setup(
name="syphon",
version=versioneer.get_version(),
description="A CSV data storage and management engine.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/tektronix/syphon",
author="Evan Hall",
license="MIT",
classifiers=CLASSIFIERS,
project_urls=PROJECT_URLS,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
python_requires=">=3,!=3.0.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,<4",
entry_points=ENTRY_POINTS,
maintainer="Keithley Instruments, LLC. et al.",
include_package_data=True,
cmdclass=versioneer.get_cmdclass(),
)