-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.33 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
# pip install -U -r requirements-dev.txt --break-system-packages; pip uninstall salve -y --break-system-packages; pip install . --break-system-packages --no-build-isolation; python3 -m pytest .
from setuptools import setup
with open("README.md", "r") as file:
long_description = file.read()
setup(
name="salve",
version="1.2.0",
description="Salve is an IPC library that can be used by code editors to easily get autocompletions, replacements, editorconfig suggestions, definitions, and syntax highlighting.",
author="Moosems",
author_email="[email protected]",
url="https://github.com/salve-org/salve",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=open("requirements.txt", "r+")
.read()
.splitlines(keepends=False),
python_requires=">=3.11",
license="MIT license",
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent", # I believe it can be classified as such, cannot test Windows
"Programming Language :: Python :: Implementation",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
],
packages=[
"salve",
"salve.server_functions",
"salve.server_functions.highlight",
],
)