forked from devottys/darkdraw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 639 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
from setuptools import setup
from pathlib import Path
def requirements():
return Path('requirements.txt').read_text().splitlines()
__version__='0.3.1'
setup(name='darkdraw',
version=__version__,
description='art and animation for the terminal, in the terminal',
author='devottys',
python_requires='>=3.7',
url='bluebird.sh',
py_modules=['darkdraw'],
install_requires=requirements(),
packages=['darkdraw'],
include_package_data=True,
entry_points={'visidata.plugins': 'darkdraw=darkdraw'},
package_data={'darkdraw': ['darkdraw/ansi.html']},
)