-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (58 loc) · 1.72 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_namespace_packages, setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('VERSION.txt') as version_file:
version = version_file.read().strip()
setup(
name='plasmaflight',
version=version,
description="Provides a plasma_store backed flight server",
long_description=readme,
long_description_content_type='text/markdown',
author="ICRAR DIA",
author_email='[email protected]',
url='https://github.com/ICRAR/plasmaflight',
packages=find_namespace_packages(where=".", include=["icrar.*"]),
entry_points={
'console_scripts': ['plasmaflight=icrar.plasmaflight:main']
},
include_package_data=True,
license="LGPLv3 license",
zip_safe=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
install_requires=[
'overrides',
'pyarrow'
],
setup_requires=[
# dependency for `python setup.py test`
'pytest-runner',
# dependencies for `python setup.py build_sphinx`
'sphinx',
'recommonmark'
],
tests_require=[
'six',
'numpy',
'pandas',
'pytest',
'pytest-cov',
'pytest-json-report',
'pycodestyle',
],
extras_require={
'dev': ['prospector[with_pyroma]', 'yapf', 'isort'],
}
)