File: setup.py

package info (click to toggle)
pythonpy 0.4.11b-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: python: 465; sh: 19; makefile: 18
file content (15 lines) | stat: -rwxr-xr-x 486 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
from setuptools import setup

setup(
    name='pythonpy',
    version='0.4.11',
    description='python -c, with tab completion and shorthand',
    #data_files=data_files,
    license='MIT',
    url='https://github.com/Russell91/pythonpy',
    long_description='https://github.com/Russell91/pythonpy',
    packages=['pythonpy', 'pythonpy.completion'],
    package_data={'pythonpy': ['completion/pycompletion.sh']},
    scripts=['pythonpy/find_pycompletion.sh'],
)