-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
41 lines (38 loc) · 1.06 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
from setuptools import setup, find_packages
version = '1.0'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='arsandbox',
version=version,
packages=find_packages(exclude=('test', 'docs')),
include_package_data=True,
install_requires=[
'matplotlib >= 3.5',
'numpy',
'pandas',
'panel >= 0.10.2',
'scipy',
'scikit-image',
'opencv-contrib-python',
'pytest',
'jupyter',
'cython',
'seaborn',
'tqdm',
'pooch',
'colorama',
'pysolar',
'sphinx',
'nbsphinx',
'sphinx-rtd-theme',
'sphinx-markdown-tables',
'sphinx-copybutton',
],
url='https://github.com/cgre-aachen/open_AR_Sandbox',
license='LGPL v3',
author='Daniel Escallon, Simon Virgo, Miguel de la Varga',
author_email='[email protected]',
description='An Open-source, Python-based Augmented reality (AR) sandbox to display many modules.',
keywords=['AR', 'Augmented reality', 'sandbox', 'geology']
)