Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Add info needed to add Furious to the public pypi #163

Merged
merged 2 commits into from
Jun 2, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ doc/source/*
!doc/source/design*.txt
!doc/source/_static/*
!doc/source/_templates/*

bilobac
dist/
furious.egg-info/
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ cover-branches=True

exclude-dir=furious/tests/dummy_module
ATTR=!slow

[metadata]
description-file = README.md
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,20 @@ def get_version():
description='Furious is a lightweight library that wraps Google App Engine'
'taskqueues to make building dynamic workflows easy.',
author='Robert Kluin',
author_email='robert.kluin@webfilings.com',
url='https://github.com/WebFilings/furious',
author_email='robert.kluin@workiva.com',
url='https://github.com/Workiva/furious',
packages=find_packages(exclude=['example']),
download_url = "https://github.com/Workiva/furious/tarball/v1.3.0",
keywords = ['async', 'gae', 'appengine', 'taskqueue'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Apache',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)


if __name__ == '__main__':
setup(**setup_args)