-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.5 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.5 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
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
"""Python client for the LF View API"""
import setuptools
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Natural Language :: English',
]
with open('README.rst') as f:
LONG_DESCRIPTION = ''.join(f.readlines())
setuptools.setup(
name='lfview-api-client',
version='0.1.2',
packages=setuptools.find_packages(exclude=('tests', )),
install_requires=[
'requests', 'properties[full]>=0.5.6', 'omf==1.0.1', 'steno3d',
'lfview-resources-files==0.0.2', 'lfview-resources-spatial==0.0.6',
'lfview-resources-manifests==0.0.1', 'lfview-resources-scene==0.0.1',
'futures; python_version == "2.7"'
],
extras_require={
'omf': ['omf', 'steno3d'],
'steno3d': ['steno3d'],
},
author='Seequent',
author_email='franklin.koch@seequent.com',
description='Python client for LF View API',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
license='MIT',
url='https://lfview.com',
download_url='https://github.com/seequent/lfview-api-client',
classifiers=CLASSIFIERS,
platforms=['Windows', 'Linux', 'Solaris', 'Mac OS-X', 'Unix'],
use_2to3=False,
)