Blame view

ImageR/setup.py 446 Bytes
1f1943eb   qijun   initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
    name = "imager",
    version = "1.0.0",
    author = "Chunk",
    author_email = "chunkplus@gmail.com",
    description = "Image processing based on machine learning and Apache Spark.",
    license = "",
    keywords = "",
    url = "",
    packages=find_packages(),
    include_package_data=True,
)