Skip to content

Commit

Permalink
Prepare PyPI distribution.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgosmann committed Mar 1, 2015
1 parent 7ef111d commit 5a41c8a
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
build
dist
*.pyc
MANIFEST
File renamed without changes.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.rst
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.rst
28 changes: 27 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
#!/usr/bin/env python

from distutils.core import setup

setup(name='pylint-venv', version='1.0', py_modules=['pylint_venv'])

with open('README.rst') as f:
long_description = f.read()

setup(
name='pylint-venv',
version='1.0',
description='pylint-venv provides a Pylint init-hook to use the same '
'Pylint installation with different virtual environments.',
long_description=long_description,
author='Jan Gosmann',
author_email='[email protected]',
url='https://github.com/jgosmann/pylint-venv/',
py_modules=['pylint_venv'],
provides=['pylint_venv'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development',
]
)

0 comments on commit 5a41c8a

Please sign in to comment.