-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.13 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
import os
from setuptools import setup
mydir = os.path.dirname(__file__)
if mydir:
os.chdir(mydir)
version = '0.4'
base_url = 'https://github.com/jvarley/jaccard_similarity'
setup(name='jaccard_similarity',
author='Jake Varley',
author_email='[email protected]',
version=version,
install_requires=['numpy>=1.8', 'plyfile', 'binvox_rw'],
description='Compute Jaccard Similarity between two meshes',
long_description='(see project homepage)',
url=base_url,
download_url=('%s/archive/v%s.tar.gz' % (base_url, version)),
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering'
],
py_modules=['jaccard_similarity'],
keywords=['jaccard', 'numpy'])