forked from sahlberg/libnfs-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (41 loc) · 1.47 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from os import environ
try:
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
except ImportError:
from distutils.core import setup, Extension
from distutils.command.build_ext import build_ext
name = 'libnfs'
version = '1.0'
release = '1'
versrel = version + '-' + release
readme = 'README'
download_url = "https://github.com/sahlberg/libnfs-python/libnfs-" + \
versrel + ".tar.gz"
long_description = file(readme).read()
_libnfs = Extension(name='libnfs._libnfs',
sources=['libnfs/libnfs_wrap.c'],
libraries=['nfs'],
)
setup(name = name,
version = versrel,
description = 'A libnfs wrapper for Python.',
long_description = long_description,
license = 'LGPLv2.1',
platforms = ['any'],
author = 'Ronnie Sahlberg',
author_email = '[email protected]',
url = 'https://github.com/sahlberg/libnfs-python/',
download_url = download_url,
packages = ['libnfs'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: C',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
ext_modules = [_libnfs],
)