-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (30 loc) · 1.07 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
from setuptools import setup, find_packages
import codecs
import os.path
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), 'r') as fp:
return fp.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='t265',
version='0.1.11',
description='t265 Tracking camera API wrapper',
long_description=read('ReadMe.md'),
long_description_content_type='text/markdown',
author='Yusuke Tanaka',
license='LGPLv3',
project_urls={'GitHub':'https://github.com/Suke0811/Localization_T265'},
packages=find_packages(include=['t265', 't265.*']),
install_requires=requirements,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Robot Framework',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3',
],
)