-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 740 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 740 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
#!/usr/bin/env python
# coding: utf-8
from distutils.core import setup, Extension
setup(
name='nbioapi',
version='1.0.0',
author='Hugo Brilhante',
author_email='hugobrilhante@gmail.com',
license='MIT',
description='The Client/Server Environment',
url='https://github.com/hugobrilhante/python-NBioAPI',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: Linux',
'Topic :: Software Development',
'Programming Language :: Python :: 2.7',
],
ext_modules=[
Extension("nbioapi",
sources=["NBioAPI/nbioapi.c"],
libraries=['NBioBSP'],
include_dirs=["/usr/local/NITGEN/eNBSP/include"])
]
)