This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
42 lines (37 loc) · 1.36 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
import os
from setuptools import setup, find_packages
version = "2.0.0b2"
with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
if os.path.isfile("vscode/extcode.js"):
with open("vscode/extcode.js", "r", encoding="utf-8") as js_file:
data = f"'''{js_file.read()}'''"
with open("vscode/extcode.py", "w", encoding="utf-8") as data_py:
data_py.write(data)
setup(
name="vscode.py",
version=version,
description="Create VSCode Extensions with python",
long_description=long_description,
long_description_content_type="text/markdown",
author="Swas.py",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/CodeWithSwastik/vscode.py",
project_urls={
"Issue tracker": "https://github.com/CodeWithSwastik/vscode.py/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
install_requires=["websockets"],
python_requires=">=3.8",
)