-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add myself to contributors list and cleanup setup.py
- Loading branch information
Showing
2 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,18 @@ | |
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name = "py-trello", | ||
version = "0.3.1", | ||
name="py-trello", | ||
version="0.3.1", | ||
|
||
description = 'Python wrapper around the Trello API', | ||
long_description = open('README.rst').read(), | ||
author = 'Richard Kolkovich', | ||
author_email = '[email protected]', | ||
url = 'https://trello.com/board/py-trello/4f145d87b2f9f15d6d027b53', | ||
keywords = 'python', | ||
license = 'BSD License', | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
description='Python wrapper around the Trello API', | ||
long_description=open('README.rst').read(), | ||
author='Richard Kolkovich', | ||
author_email='[email protected]', | ||
url='https://trello.com/board/py-trello/4f145d87b2f9f15d6d027b53', | ||
keywords='python', | ||
license='BSD License', | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: OS Independent', | ||
|
@@ -23,9 +23,9 @@ | |
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.3', | ||
], | ||
install_requires = ["requests", "requests-oauthlib >= 0.4.1", "python-dateutil"], | ||
packages = find_packages(), | ||
include_package_data = True, | ||
) | ||
], | ||
install_requires=["requests", "requests-oauthlib >= 0.4.1", "python-dateutil"], | ||
packages=find_packages(), | ||
include_package_data=True, | ||
) | ||
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 |