-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (44 loc) · 1.6 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
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
from sys import platform
import termslides
with open(path.join('.', 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt', encoding='utf-8') as f:
install_requires = [line.strip() for line in f.read().split('\n')
if not line.strip().startswith('#')]
setup(
name='termslides',
version=termslides.__version__,
description='Script your slides in YAML file and show it in terminal.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=install_requires,
author='onelife',
author_email='[email protected]',
license=termslides.__license__,
url='https://github.com/onelife/termslides',
download_url='https://github.com/onelife/termslides/archive/%s.tar.gz' % termslides.__version__,
keywords=['terminal', 'slides', 'asscii', 'art'],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Markup',
],
package_data={
'termslides': [
'lib/*.jar',
],
},
entry_points={
'console_scripts': [
'termslides = termslides:termslides',
],
}
)