-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (29 loc) · 1.01 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
37
#! /usr/bin/env python
import setuptools
VERSION = '0.3.1'
with open('README.rst') as f:
long_description = f.read()
setup_kwargs = {
'name': 'pypath_magic',
'description': "IPython magic and CLI to manipulate the Python path",
'long_description': long_description,
'author': 'Tony S. Yu',
'author_email': '[email protected]',
'py_modules': ['pypath_magic'],
'packages': setuptools.find_packages(),
'version': VERSION,
'license': 'Modified BSD',
'url': 'http://tonysyu.github.com/pypath_magic',
'download_url': 'http://tonysyu.github.com/pypath_magic',
'classifiers': [
'Topic :: Utilities',
'Framework :: IPython',
'Intended Audience :: Developers',
'Topic :: Desktop Environment :: File Managers',
],
'keywords': ['PYTHONPATH', 'utility', 'IPython'],
'install_requires': ['IPython >= 1.0'],
'entry_points': {'console_scripts': ['pypath = pypath_magic.cli:main']},
}
if __name__ == '__main__':
setuptools.setup(**setup_kwargs)