forked from adamkewley/xdc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (29 loc) · 956 Bytes
/
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
import setuptools
import os
__version__ = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
# read README for long description
with open(os.path.join(here, "README.md")) as f:
readme_content = f.read()
# list dependencies
with open(os.path.join(here, "requirements.txt")) as f:
requirements = f.read().split("\n")
setuptools.setup(
name='xdc',
version=__version__,
description="Use an XSens DOT from pure python code, with no external dependencies",
long_description=readme_content,
url="https://github.com/adamkewley/xdc",
license="Apache 2.0",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
],
keywords="XSens DOT",
py_modules=["xdc"],
author="Adam Kewley",
author_email="[email protected]",
install_requires=requirements,
python_requires=">=3",
)