-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
50 lines (42 loc) · 1.44 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
"""
Setup for lookatme
"""
from setuptools import setup, find_packages
import os
req_path = os.path.join(os.path.dirname(__file__), "requirements.txt")
with open(req_path, "r") as f:
required = f.read().splitlines()
readme_path = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_path, "r") as f:
readme = f.read()
setup(
name="lookatme",
version="{{VERSION}}",
description="An interactive, command-line presentation tool",
author="James Johnson",
author_email="d0c.s4vage@gmail.com",
url="https://github.com/d0c-s4vage/lookatme",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.6",
packages=find_packages(exclude=["docs", ".gitignore", "README.md", "tests"]),
install_requires=required,
classifiers=[
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics :: Presentation",
"Topic :: Software Development :: Documentation",
],
entry_points={
"console_scripts": [
"lookatme = lookatme.__main__:main",
"lam = lookatme.__main__:main",
"witnessme = lookatme.__main__:main",
]
},
)