You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
650 B

try:
from setuptools import setup
args = {}
except ImportError:
from distutils.core import setup
args = dict(scripts=['jediepcserver.py'])
print("""\
*** WARNING: setuptools is not found. Using distutils...
It is highly recommended to install Jedi.el via M-x jedi:install-server.
Note: If you are using Windows, then Jedi.el will not work with distutils.
""")
setup(
name='jediepcserver',
py_modules=['jediepcserver'],
install_requires=[
"jedi>=0.8.1",
"epc>=0.0.4",
"argparse",
],
entry_points={
'console_scripts': ['jediepcserver = jediepcserver:main'],
},
**args
)