-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (61 loc) · 2.19 KB
/
setup.py
File metadata and controls
63 lines (61 loc) · 2.19 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# setup.py
from setuptools import setup, find_packages
from pathlib import Path
# Read the long description from the README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name="slandroid",
version="0.3.7",
packages=find_packages(),
entry_points={
"console_scripts": [
"slandroid = slandroid.tool:main", # This creates the `slandroid` command
],
},
description="A universal script runner for multiple programming languages. Automatically detects and runs scripts in Python, JavaScript, Bash, Ruby, Java, Go, PHP, Perl, C, C++, Rust, and more.",
long_description=long_description,
long_description_content_type="text/markdown", # Specify the format of the long description
author="Ishan Oshada (SL ANDROID TEAM)",
author_email="ishan.kodithuwakku.offical@gmail.com",
url="https://github.com/ishanoshada/sl-android",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Environment :: Console",
],
keywords=[
"script runner",
"multi-language",
"python",
"javascript",
"bash",
"ruby",
"java",
"go",
"php",
"perl",
"c",
"c++",
"rust",
"automation",
"developer tools",
],
install_requires=["requests","packaging"], # Add dependencies if needed
project_urls={
"Source": "https://github.com/ishanoshada/sl-android",
"Bug Reports": "https://github.com/ishanoshada/sl-android/issues",
"Documentation": "https://github.com/ishanoshada/sl-android#readme",
},
)