-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 821 Bytes
/
setup.py
File metadata and controls
33 lines (27 loc) · 821 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
28
29
30
31
32
33
#!/usr/bin/python3 -tt
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os.path import *
def read_requires(path=None):
if path is None:
path = join(dirname(__file__), 'requirements.txt')
print(path)
with open(path) as fp:
return [l.strip() for l in fp.readlines()]
setup(
name = 'telescreen',
version = '1',
author = 'NTK',
description = ('Digital signage player for GNOME'),
license = 'MIT',
keywords = 'video image slideshow indoktrinator',
url = 'https://github.com/techlib/telescreen',
include_package_data = True,
packages = find_packages(),
classifiers = [
'License :: OSI Approved :: MIT License',
],
scripts = ['bin/telescreen'],
install_requires = read_requires(),
)
# vim:set sw=4 ts=4 et: