-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
29 lines (28 loc) · 976 Bytes
/
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
from setuptools import setup, find_packages # type: ignore
setup(
name='tagls',
# The version will be updated automatically in CI
version='unknown',
description='A language server based on tags',
author='daquexian',
author_email='[email protected]',
url='https://github.com/daquexian/tagls',
packages=find_packages(),
package_data={'': ['LICENSE']},
license='Apache',
install_requires=[
'pygls-tagls-custom == 0.0.1'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development'
],
python_requires='>=3.5'
)