forked from stephan-hof/boost_queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 885 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
from setuptools import setup
from setuptools import Extension
mod = Extension(
'boost_queue',
sources=['boost_queue.cpp'],
libraries=['boost_thread', 'boost_date_time', 'boost_system'],
extra_compile_args=["-O2"],
)
setup(
name='boost_queue',
version='0.4.2',
description="Queue using boost's locking API",
long_description=open('README.rst').read(),
classifiers=[
'Programming Language :: C++',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='queue boost',
author='Stephan Hofmockel',
author_email="Use the github issues",
url='https://github.com/stephan-hof/boost_queue',
license='boost',
packages=['tests'],
ext_modules=[mod]
)