File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 1- from AutoCAD import __version__
21print ("╔────────────────────────────────── WELCOME ──────────────────────────────────╗" )
32print ("| ▁ ▂ ▄ ▅ ▆ ▇ █ AutoCAD █ ▇ ▆ ▅ ▄ ▂ ▁ |" )
43print ("| AutoCAD is a Python library designed for automating AutoCAD |" )
87print ("| github: https://github.com/Jones-peter By - JonesPeter |" )
98print ("| |" )
109print ("╚──────────────────────────Unlimited CAD Automation───────────────────────────╝" )
11- print (f"Version - { __version__ } " )
12- print ("" )
10+ print (f"Version - 0.1.10" )
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22import sys
3- from AutoCAD import __version__
43
54requirements = ['psutil' ]
65# Add Windows-specific requirements only when on Windows
98
109setup (
1110 name = "AutoCAD" ,
12- version = __version__ ,
11+ version = "0.1.10" ,
1312 packages = find_packages (),
1413 install_requires = requirements ,
1514 entry_points = {
You can’t perform that action at this time.
0 commit comments