forked from colour-science/colour-demosaicing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
70 lines (57 loc) · 2.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Pypi Setup
==========
"""
from __future__ import unicode_literals
import os
from setuptools import setup
from setuptools import find_packages
__author__ = 'Colour Developers'
__copyright__ = 'Copyright (C) 2015-2017 - Colour Developers'
__license__ = 'New BSD License - http://opensource.org/licenses/BSD-3-Clause'
__maintainer__ = 'Colour Developers'
__email__ = '[email protected]'
__status__ = 'Production'
__all__ = ['SHORT_DESCRIPTION',
'LONG_DESCRIPTION',
'INSTALLATION_REQUIREMENTS',
'DOCS_REQUIREMENTS',
'TESTS_REQUIREMENTS']
SHORT_DESCRIPTION = 'Colour - Demosaicing'
LONG_DESCRIPTION = open('README.rst').read()
INSTALLATION_REQUIREMENTS = ['colour-science>=0.3.8']
DOCS_REQUIREMENTS = ['sphinx>=1.2.2']
TESTS_REQUIREMENTS = ['coverage>=3.7.1',
'flake8>=2.1.0',
'nose>=1.3.4']
if os.environ.get('READTHEDOCS') == 'True':
INSTALLATION_REQUIREMENTS = ['colour-science>=0.3.8',
'mock==1.0.1']
setup(name='colour-demosaicing',
version='0.1.2',
author=__author__,
author_email=__email__,
include_package_data=True,
packages=find_packages(),
scripts=[],
url='http://github.com/colour-science/colour-demosaicing',
license='',
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=INSTALLATION_REQUIREMENTS,
extras_require={
'docs': DOCS_REQUIREMENTS,
'tests': TESTS_REQUIREMENTS},
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development'])