Skip to content

Commit

Permalink
General stuff!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
Kura committed Aug 8, 2014
1 parent 9a7115d commit ca5f476
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 0 deletions.
9 changes: 9 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Dev
===

- Kura <kura@kura.io>

Requests
========

- Kenneth Reitz <me@kennethreitz.org>
13 changes: 13 additions & 0 deletions LICENSE-REQUESTS
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2014 Kenneth Reitz

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.rst LICENSE LICENSE-REQUESTS
2 changes: 2 additions & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nose
coveralls
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
requests
wheel
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[wheel]
universal = 1
40 changes: 40 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import sys

from setuptools import setup
from setuptools import find_packages


version = __import__('yarg').__version__


setup(name='yarg',
version=version,
url="https://kura.io/yarg/",
author="Kura",
author_email="kura@kura.io",
maintainer="Kura",
maintainer_email="kura@kura.io",
description="A PyPI client.",
long_description=open('README.rst').read(),
license='MIT',
platforms=['linux'],
packages=find_packages(exclude=["*.tests"]),
install_requires=['requests', ],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving :: Packaging',
],
zip_safe=True,
)

0 comments on commit ca5f476

Please sign in to comment.