-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (52 loc) · 2.08 KB
/
setup.py
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
from setuptools import find_packages, setup
setup(
name="localtunnel-py",
version='{{VERSION_PLACEHOLDER}}',
description="A Python client for Localtunnel.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="gweidart",
author_email="rollbit@icloud.com",
url="https://github.com/gweidart/localtunnel-py",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: Proxy Servers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Firewalls",
"Topic :: Utilities",
"Natural Language :: English",
"Operating System :: OS Independent",
], # Updated classifiers
packages=find_packages(),
install_requires=[
"aiohttp>=3.11.2",
"rich>=13.9.4",
"asyncio>=3.4.3",
"nest_asyncio>=1.5.6",
], # Updated dependencies
entry_points={"console_scripts": ["lt=localtunnel.__main__:main"]},
python_requires=">=3.12",
project_urls={
"Source": "https://github.com/gweidart/localtunnel-py",
"Bug Tracker": "https://github.com/gweidart/localtunnel-py/issues",
},
)