-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 961 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
27
28
29
30
31
import numpy
from setuptools import setup, find_packages
from Cython.Build import cythonize
__version__ = '0.2.7'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='nplocate',
version=__version__,
ext_modules=cythonize(["nplocate/csimulate.pyx", "nplocate/cutility.pyx"]),
packages=find_packages(),
include_dirs=numpy.get_include(),
author='Yushi Yang',
author_email='yangyushi1992@icloud.com',
url='https://github.com/yangyushi/nplocate',
description='Python tools to locate nano particles from confocal microscope images',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
],
zip_safe=False,
setup_requires=["cython", "numpy"],
install_requires=[
'setuptools', 'wheel', 'numpy', 'scipy', 'matplotlib', 'cython'
],
)