-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
26 lines (25 loc) · 814 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="quads",
version="1.1.0",
description=("A pure Python Quadtree implementation."),
author="Daniel Lindsley",
author_email="daniel@toastdriven.com",
url="http://github.com/toastdriven/quads",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
py_modules=["quads"],
requires=[],
install_requires=[],
tests_require=["pytest",],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)