-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (35 loc) · 1.06 KB
/
setup.py
File metadata and controls
executable file
·40 lines (35 loc) · 1.06 KB
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
#!/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@devnull.com",
url="https://github.com/jessemyers/lxmlbind",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=["*.tests"]),
install_requires=[
"lxml>=3.2.4",
"six>=1.10",
],
tests_require=[
"nose>=1.3.0",
],
test_suite="lxmlbind.tests",
include_package_data=True,
)