forked from jessemyers/lxmlbind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (25 loc) · 718 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (25 loc) · 718 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
27
28
29
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from lxmlbind import __version__
__build__ = ""
readme = open("README.md").read()
setup(name="lxmlbind",
version=__version__ + __build__,
description="Python LXML object binding.",
long_description=readme,
author="Jesse Myers",
author_email="jesse@locationlabs.com",
url="https://github.com/jessemyers/lxmlbind",
packages=find_packages(exclude=["*.tests"]),
setup_requires=[
"nose>=1.3.0",
],
install_requires=[
"lxml>=3.2.4",
],
tests_require=[
],
test_suite="lxmlbind.tests",
include_package_data=True,
)