forked from hercules-team/python-augeas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (26 loc) · 955 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
31
32
#!/usr/bin/env python
"""
setup.py file for augeas
"""
import os
from setuptools import setup, find_packages
prefix = os.environ.get("prefix", "/usr")
setup (name = 'python-augeas',
version = '1.0.3',
author = "Harald Hoyer",
author_email = "augeas-devel@redhat.com",
description = """Python bindings for Augeas""",
packages=find_packages(exclude=('test')),
setup_requires=["cffi>=1.0.0"],
cffi_modules=["augeas/ffi.py:ffi"],
install_requires=["cffi>=1.0.0"],
url = "http://augeas.net/",
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)