-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.54 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
################################################################################
#
# Copyright (C) 2019 Garrett Brown
# This file is part of pysosa - https://github.com/eigendude/pysosa
#
# SPDX-License-Identifier: BSD-3-Clause
# See the file LICENSE for more information.
#
################################################################################
import setuptools
with open('README.md') as file:
long_description = file.read()
setuptools.setup(
name='pysosa',
version='1.0.0',
author='Garrett Brown',
author_email='[email protected]',
description='Python library for working with SOSA (Sensor, Observation, Sample, and Actuation) objects and relationships.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/eigendude/pysosa',
license='BSD-3-Clause',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
],
packages=setuptools.find_packages(exclude=['test', 'test.*']),
install_requires=[
'pyqudt',
'rdflib',
'rdflib-jsonld',
],
)