-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
46 lines (40 loc) · 1.46 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
from setuptools import setup
import versioneer
from os import path
here = path.abspath(path.dirname(__file__))
# Read the requirements from requirements.txt
requires = open('requirements.txt').read().strip().split('\n')
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
short_description = (
"""Assemble thumbnail-sized images from a large collection into a tiling
which, viewed at a distance, gives the impression of one large photo.""")
extras_require = {
'parallel': ['dask[bag]'],
}
extras_require['complete'] = sorted(set(sum(extras_require.values(), [])))
setup(
name='photomosaic',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=short_description,
long_description=long_description,
url='https://github.com/danielballan/photomosaic',
author='Photomosiac Contributors',
author_email='[email protected]',
license='BSD 3-Clause',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='art image color mosaic',
packages=['photomosaic'],
python_requires=">=3.6",
install_requires=requires,
extras_require=extras_require
)