-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 872 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 872 Bytes
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
"""
motexml: MoteXML binary XML encoding format python support package.
Warpper around shared library for python.
"""
from setuptools import setup, find_packages
from os.path import join as pjoin
import motexml
doclines = __doc__.split("\n")
setup(name='motexml',
version=motexml.__version__,
description='MoteXML binary XML encoding format python support package.',
long_description='\n'.join(doclines[2:]),
url='http://github.com/proactivity-lab/python-motexml',
author='Raido Pahtma',
author_email='raido.pahtma@ttu.ee',
license='MIT',
platforms=['any'],
packages=find_packages(),
install_requires=[],
test_suite='nose.collector',
tests_require=['nose'],
scripts=[pjoin('bin', 'motexml-generate'), pjoin('bin', 'motexml-to-xml'), pjoin('bin', 'motexml-from-xml')],
zip_safe=False)