This repository has been archived by the owner on Feb 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
78 lines (68 loc) · 2.05 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
#!/usr/bin/env python
"""setup.py
Copyright (c) 2017-2018 Keithley Instruments, LLC.
Licensed under MIT (https://github.com/ehall/syphon/blob/master/LICENSE)
"""
import io
import os
import versioneer
from setuptools import find_packages, setup
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 :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
]
PROJECT_URLS = {
'Source': 'https://github.com/ethall/syphon',
'Tracker': 'https://github.com/ethall/syphon/issues',
}
INSTALL_REQUIRES = [
'pandas<=0.23.*',
'sortedcontainers<=1.6.*'
]
EXTRAS_REQUIRE = {
'dev': ['check-manifest'],
'test': [
'tox',
'pytest',
'pytest-cov',
],
}
ENTRY_POINTS = {
'console_scripts': [
'syphon=syphon.__main__:bootstrap'
]
}
setup(
name='syphon',
version=versioneer.get_version(),
description='A data storage and management engine.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/ethall/syphon',
author='Evan Hall',
license='MIT',
classifiers=CLASSIFIERS,
project_urls=PROJECT_URLS,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
python_requires='>=3,!=3.0.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.7.*,<4',
entry_points=ENTRY_POINTS,
maintainer='Keithley Instruments, LLC. et al.',
include_package_data=True,
cmdclass=versioneer.get_cmdclass(),
)