Skip to content
This repository has been archived by the owner on Jun 5, 2020. It is now read-only.

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
faruken committed Aug 13, 2016
1 parent f06f9fa commit a1eb6f6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
python-tag=py35
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import (setup, find_packages)

setup(
name="aio-tinder",
version="0.1.dev0",
description="Tinder API library with asyncio",
url="https://github.com/faruken/aio-tinder",
author="faruken",
author_email="",
license="Whichever works for you",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython"
],
keywords="tinder api asyncio",
packages=find_packages(exclude=["tests"]),
install_requires=[
"aiohttp==0.22.5",
"cchardet==1.0.0",
"chardet==2.3.0",
"multidict==1.2.2",
"ujson==1.35"
],
extras_require={
"test": ["coverage==4.2", "Logbook==1.0.0"]
}
)

0 comments on commit a1eb6f6

Please sign in to comment.