Skip to content

Commit

Permalink
fix some pylints
Browse files Browse the repository at this point in the history
  • Loading branch information
llazzaro committed Sep 10, 2016
1 parent 572023b commit 89c4f5c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions setup.py
Expand Up @@ -4,32 +4,32 @@
from setuptools import setup, find_packages

with open('README.md') as readme_file:
readme = readme_file.read()
README = readme_file.read()

with open('HISTORY.rst') as history_file:
history = history_file.read()
HISTORY = history_file.read()

requirements = [
REQUIREMENTS = [
'gitpython',
]

test_requirements = [
TEST_REQUIREMENTS = [
'pytest',
]

setup(
name='packyou',
version='0.1.2',
description="Downloads a python project and allows to import it from anywhere. Very useful when the repo is not a package",
long_description=readme + '\n\n' + history,
version='0.1.3',
description="Downloads or clones a python project from github and allows to import it from anywhere. Very useful when the repo is not a package",
long_description=README + '\n\n' + HISTORY,
author="Leonardo Lazzaro",
author_email='llazzaro@dc.uba.ar',
url='https://github.com/llazzaro/packyou',
packages=find_packages(),
package_dir={'packyou':
'packyou'},
include_package_data=True,
install_requires=requirements,
install_requires=REQUIREMENTS,
license="MIT license",
zip_safe=False,
keywords='packyou',
Expand All @@ -47,5 +47,5 @@
'Programming Language :: Python :: 3.5',
],
test_suite='tests',
tests_require=test_requirements
tests_require=TEST_REQUIREMENTS,
)

0 comments on commit 89c4f5c

Please sign in to comment.