forked from Ben1152000/sootty
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (32 loc) · 888 Bytes
/
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
import pathlib
import setuptools
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text(encoding='utf-8')
setuptools.setup(
name='sootty',
version='1.0',
description='Displays vcd files to the command line.',
long_description=README,
packages=setuptools.find_packages(exclude=("tests",)),
long_description_content_type="text/markdown",
url="https://github.com/Ben1152000/sootty",
author="Ben Darnell",
author_email="[email protected]",
license="BSD",
entry_points={
'console_scripts': [
'sootty = sootty.__main__:main'
]
},
package_data={
"sootty.static": ["*.lark"],
},
install_requires=[
'lark>=1',
'pyvcd>=0.3',
'sortedcontainers>=2.4',
'PyYAML>=6.0'
],
)