forked from s-ol/themer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·28 lines (25 loc) · 850 Bytes
/
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
#!/usr/bin/env python
# vim:fileencoding=utf-8:noet
from __future__ import unicode_literals
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md'), 'rb').read().decode('utf-8')
except IOError:
README = ''
setup(
name='Themer',
version='1.8.3',
description='Themer is a colorscheme generator and manager for your desktop.',
long_description=README,
author='Charles Leifer, Sol Bekic',
author_email='s+py@s-ol.nu',
url='https://github.com/s-ol/themer',
scripts=['scripts/themer'],
license='MIT',
keywords='wm colorscheme color theme wallpaper',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
install_requires=['pyyaml', 'jinja2', 'pillow', 'requests'],
)