forked from gotthardp/python-mercuryapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (21 loc) · 973 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# python3 setup.py build
# python3 setup.py sdist upload
from setuptools import setup, Extension
setup(name="python-mercuryapi", version="0.4.1",
author="Petr Gotthard",
author_email="[email protected]",
description="Python wrapper for the ThingMagic Mercury API",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/gotthardp/python-mercuryapi",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta"
],
ext_modules=[Extension("mercury",
sources=["mercury.c"],
libraries=["mercuryapi", "ltkc", "ltkctm"],
include_dirs=['build/mercuryapi/include'],
library_dirs=['build/mercuryapi/lib'])])