-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
41 lines (37 loc) · 1.26 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
#!/use/bin/env python
from setuptools import setup
def readme():
with open('README.rst') as f:
contents = f.read()
return contents
setup(
name='vptree',
version='1.3',
author='Rickard Sjögren',
author_email='r.sjogren89@gmail.com',
license='MIT',
url='https://github.com/RickardSjogren/vptree',
description=('A package implementing a vantage-point data structure, for '
'efficient nearest neighbor searching.'),
long_description=readme(),
py_modules=['vptree'],
test_suite='test',
keywords='python machine learning search',
install_requires=[
'numpy',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)