-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 703 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 703 Bytes
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
from setuptools import setup, find_packages
setup(
name="tree2proj",
version="0.1.1",
description="Generate project folders/files from JSON tree (via tree2json)",
author="knighthood",
author_email="2109695291@qq.com",
url="https://github.com/Knighthood2001/Python-tree2proj",
packages=find_packages(),
include_package_data=True,
install_requires=[
"tree2json>=0.1.3",
"pyperclip>=1.8.0"
],
python_requires=">=3.7",
entry_points={
"console_scripts": [
"tree2proj=tree2proj.cli:main"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
)