-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
53 lines (48 loc) · 1.71 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
################################################################################
#
# Copyright (C) 2019 Garrett Brown
# This file is part of pyqudt - https://github.com/eigendude/pyqudt
#
# pyqudt is derived from jQUDT
# Copyright (C) 2012-2013 Egon Willighagen <[email protected]>
#
# 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='pyqudt',
version='1.1.0',
author='Garrett Brown',
author_email='[email protected]',
description='Python library for working with the QUDT (Quantity, Unit, Dimension and Type) ontology.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/eigendude/pyqudt',
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.*']),
package_data={
'qudt.ontology.resources': ['*'],
'qudt': ['py.typed'],
},
install_requires=[
'PyLD',
'rdflib',
'rdflib-jsonld',
],
)