-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.46 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.46 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
# Complete setup.py - add the missing parts
from setuptools import setup, find_packages
setup(
name="devscan-pro",
version="1.1.0",
description="Professional Development Tools Scanner",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Your Name", # Change to your actual name
author_email="your@email.com", # Change to your actual email
url="https://github.com/yourusername/devscan-pro", # Change to your actual GitHub URL
packages=find_packages(),
install_requires=[
'requests>=2.28.0',
],
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: Other/Proprietary License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Systems Administration',
],
# ADD THESE LINES for proper executable
entry_points={
'console_scripts': [
'devscan-pro=devscan_pro:main',
],
},
include_package_data=True, # Include non-Python files
)