-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
42 lines (38 loc) · 1.14 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
from Cython.Distutils import build_ext
from distutils.core import setup
from distutils.extension import Extension
from setuptools import find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='lsds',
version='0.1.3',
description='Local Shape Descriptors.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/funkey/lsd',
author='Jan Funke',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
ext_modules=[
Extension(
'lsd.post.merge_tree',
sources=[
'lsd/post/merge_tree.pyx'
],
extra_compile_args=['-O3'],
language='c++')
],
cmdclass={'build_ext': build_ext},
install_requires=[
"numpy",
"scipy",
"h5py",
"scikit-image",
"requests",
"cython",
"gunpowder",
]
)