-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 842 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 842 Bytes
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
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='hy-language-server',
version='0.0.7',
author='Rintaro Okamura',
author_email='rintaro.okamura@gmail.com',
description='hy language server using Jedhy',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/rinx/hy-language-server',
packages=['hyls'],
package_data={
'hyls': ['*.hy', '__pycache__/*']
},
python_requires='>=3.6',
install_requires=[
'argparse',
'hy @ git+https://github.com/hylang/hy.git',
'pygls',
'jedhy @ git+https://github.com/rinx/jedhy.git@update/hy-1.0a1'
],
entry_points={
'console_scripts': [
'hyls=hyls.__main__:main'
]
}
)