-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
55 lines (48 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
import os
from setuptools import setup, find_packages
from setuptools.extension import Extension
from Cython.Build import cythonize
version = '0.1.dev1'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md')).read()
except IOError:
README = ''
install_requires = [
'numpy',
'scikit-image'
# 'Theano', # we require a development version, see requirements.txt
]
extensions = [
Extension(
'bsds.correspond_pixels',
[os.path.join('bsds', 'correspond_pixels.pyx')],
),
]
setup(
name = "py-bsds500",
version=version,
description="BSDS-500 access library and evaluation suite for Python",
long_description="\n\n".join([README]),
classifiers=[
"Development Status :: 1 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
# "Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3.4",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="",
author="Geoffrey French",
# author_email="brittix1023 at gmail dot com",
url="https://github.com/Britefury/py-bsds500",
license="MIT",
# packages=find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=install_requires,
packages = find_packages(),
ext_modules = cythonize(extensions)
)