-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (44 loc) · 1.47 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages
def read(*paths):
"""
Build a file path from *paths* and return the contents.
"""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='kdtrees',
version='0.1.7',
description='Python implementation of a K-D Tree as a pseudo-balanced Tree',
long_description=(read('README.md') + '\n\n'),
long_description_content_type="text/markdown",
url='http://github.com/paradoxysm/kdtrees',
download_url = 'https://github.com/paradoxysm/kdtrees/archive/0.1.7.tar.gz',
author='paradoxysm',
author_email='paradoxysm.dev@gmail.com',
license='BSD-3-Clause',
packages=find_packages(),
install_requires=[
'numpy'
],
extras_require={
'test': ['pytest', 'coverage', 'pytest-cov']
},
python_requires='>=3.4, <4',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
keywords=['kdtree', 'python', 'data-structures'],
zip_safe=True)