-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 831 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 831 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
from setuptools import setup, find_packages
setup(
name = "geojson_utils",
version = "0.0.1",
description = "Python helper functions for manipulating GeoJSON",
long_description = open('README.md').read(),
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
keywords = "python geojson util calculation",
author = "brandonxiang",
author_email = "1542453460@qq.com",
url = "https://github.com/brandonxiang/geojson-python-utils",
license = "MIT",
install_requires=[
'requests>=2.9.1',
],
include_package_data = True,
zip_safe = True
)