-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (30 loc) · 962 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
33
from setuptools import setup, find_packages
version = "1.1.0"
try:
desc = open("README.rst", "r").read()
except Exception:
desc = ""
setup(
name="keytree",
version=version,
description="KML utilities for the ElementTree API",
long_description=desc,
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: GIS",
],
keywords="KML etree ElementTree",
author="Sean Gillies",
author_email="[email protected]",
url="https://github.com/Toblerity/keytree",
license="BSD",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
tests_require=["pytest", "lxml"],
zip_safe=False,
)