-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (26 loc) · 851 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
29
30
31
32
33
from setuptools import find_packages, setup
import termconf
version = termconf.__version__
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
dependencies = [l.strip() for l in f.readlines() if not l.startswith('#')]
setup(
name='termconf',
version=version,
author='iuvbio',
author_email='cryptodemigod@protonmail.com',
description='Generates gnome-terminal profiles based on an image',
long_description_content_type="text/markdown",
long_description=long_description,
keywords="""\
colorscheme gnome-terminal profiles terminal-emulators \
changing-colorschemes\
""",
packages=find_packages(),
entry_points={'console_scripts': ['tconf=termconf.main:cli']},
install_requires=dependencies,
extras_require={
'imgpal': []
}
)