-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.3 KB
/
setup.py
File metadata and controls
38 lines (32 loc) · 1.3 KB
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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
with open('requirements.txt') as requirements_file:
requirements = [line.rstrip('\n') for line in requirements_file]
with open('requirements-test.txt') as requirements_test_file:
requirements_test = [line.rstrip('\n') for line in requirements_test_file]
setup(
author='Emily Selwood',
author_email='emily.selwood@sa.catapult.org.uk',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
description='A query engine for the open data cube',
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
version='0.4.2',
keywords='open data cube query engine',
name='cubequery',
license='apache2',
packages=find_packages(include=['cubequery'], exclude=['venv*', ]),
install_requires=requirements,
setup_requires=[],
tests_require=requirements_test,
test_suite='nose2.collector.collector',
url='https://github.com/SatelliteApplicationsCatapult/cubequery',
)