forked from FedericoCeratto/dashing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 842 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 842 Bytes
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
from setuptools import setup, find_packages
version = '0.1'
setup(name='dashing',
version=version,
description="High-level terminal-based dashboard",
long_description="""\
Easily create dashboards""",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
],
keywords='dashboard terminal',
author='Federico Ceratto',
author_email='federico@debian.org',
url='https://github.com/FedericoCeratto/dashing',
license='LGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'blessed'
],
)