-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (31 loc) · 1.01 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
# -*- coding:utf-8 -*-
"""
setup.py (SMFSWcolor)
Author: SMFSW
SMFSWcolor setup file
"""
__version__ = "0.3.0"
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='SMFSWcolor',
version=__version__,
packages=find_packages(exclude=['build', 'contrib', 'doc', 'docs', 'tests']),
install_requires=['numpy'],
url='N/A',
author='SMFSW',
author_email='xgarmanboziax@gmail.com',
license='Copyright (c) 2016-2018 SMFSW',
description='various color schemes classes, low level conversions & transformations',
keywords=['Color', 'Conversion', 'CIE', 'Color scenarios'],
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)