forked from cnangel/python-libconfig
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 757 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages, Extension
import sys, os
setup(
name = 'pylibconfig',
description = "libconfig bindings for Python",
version = "0.0.1",
author = "Sergey S. Gogin",
author_email = "d-x@bk.ru",
maintainer ="cnangel",
maintainer_email = "cnangel@gmail.com",
keywords = "libconfig libconfig++ boost python config configuration",
test_suite = "tests",
license = "bsd",
url = "",
ext_modules = [
Extension(
"pylibconfig",
["src/pylibconfig.cc"],
libraries=["boost_python", "config++"]
#include_dirs=includes,
#extra_link_args=lflags
)
]
)