-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.12 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
# pip install -U -r requirements-dev.txt --break-system-packages; pip uninstall albero -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="albero",
version="0.2.0",
description="Albero is a tool that makes it much easier to use Tree Sitter for your code editors",
author="Moosems",
author_email="[email protected]",
url="https://github.com/salve-org/albero",
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 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
],
packages=["albero", "albero.languages"],
)