[go: up one dir, main page]

File: setup.py

package info (click to toggle)
colorspacious 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 976 kB
  • sloc: python: 1,848; makefile: 147
file content (36 lines) | stat: -rw-r--r-- 1,011 bytes parent folder | download | duplicates (6)
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
from setuptools import setup, find_packages
import sys
import os.path

import numpy as np

# Must be one line or PyPI will cut it off
DESC = ("A powerful, accurate, and easy-to-use Python library for "
        "doing colorspace conversions")

import codecs
LONG_DESC = codecs.open("README.rst", encoding="utf-8").read()

# defines __version__
exec(open("colorspacious/version.py").read())

setup(
    name="colorspacious",
    version=__version__,
    description=DESC,
    long_description=LONG_DESC,
    author="Nathaniel J. Smith",
    author_email="njs@pobox.com",
    url="https://github.com/njsmith/colorspacious",
    license="MIT",
    classifiers =
      [ "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "Intended Audience :: Science/Research",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 3",
        ],
    packages=find_packages(),
    install_requires=["numpy"],
)