-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.34 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.34 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
39
40
from setuptools import setup, find_packages
import sys
requirements = ['psutil']
# Add Windows-specific requirements only when on Windows
if sys.platform == 'win32':
requirements.append('pywin32')
setup(
name="AutoCAD",
version="0.1.11",
packages=find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
'AutoCAD = AutoCAD.__main__:main',
],
},
keywords=["autocad", "automation", "activex", "comtypes", "AutoCAD", "AutoCADlib"],
author="Jones Peter",
author_email="jonespetersoftware@gmail.com",
url="https://github.com/Jsweb-Tech/AutoCAD",
description="A professional AutoCAD automation package with many functions.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: Microsoft :: Windows",
],
include_package_data=True,
project_urls={
"Homepage": "https://github.com/Jsweb-Tech/AutoCAD",
"Documentation": "https://jsweb-tech.github.io/AutoCAD/",
"Bug Tracker": "https://github.com/Jsweb-Tech/AutoCAD/issues",
},
)