-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (37 loc) · 1.06 KB
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
from setuptools import setup, find_packages
setup(
name="TEXT_LOOM",
version="0.0.1",
author="Clear Menser",
author_email="kleer001code@gmail.com",
description="A terminal-based node editor for text manipulation",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/kleer001/Text_Loom",
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
"textual>=0.52.1",
],
extras_require={
'repl': ['ipython>=7.0.0'],
},
entry_points={
'console_scripts': [
'tloom=repl.tloom_shell:main',
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
python_requires=">=3.8",
include_package_data=True,
package_data={
"TUI": ["themes/*"],
},
)