forked from pythonic-emacs/anaconda-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.26 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
36
from setuptools import setup
readme = open('README.rst').read()
setup(name='anaconda_mode',
version='0.1.1',
url='https://github.com/proofit404/anaconda-mode',
description='Code navigation, documentation lookup and '
'completion for Python.',
long_description=readme,
platforms='any',
license='GPL3',
author='Artem Malyshev',
author_email='[email protected]',
maintainer='Artem Malyshev',
maintainer_email='[email protected]',
py_modules=['anaconda_mode'],
install_requires=[
'jedi>=0.9.0',
'service_factory>=0.1.2'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Text Editors',
'Topic :: Text Editors :: Emacs',
])