-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jonas Hagstedt
committed
Apr 15, 2015
1 parent
6e87006
commit e0ad906
Showing
2 changed files
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
setup( | ||
name="wildfish-ratings", | ||
version="0.1.0", | ||
author="Wildfish", | ||
author_email="[email protected]", | ||
description=("Django ratings"), | ||
license="BSD", | ||
keywords="ratings", | ||
url="https://github.com/wildfish/wildfish-ratings", | ||
packages=find_packages(), | ||
long_description=read('README.md'), | ||
include_package_data=True, | ||
install_requires=[ | ||
"Django >= 1.6, < 1.8", | ||
"django-model-utils", | ||
], | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: BSD License" | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.3", | ||
"Programming Language :: Python :: 3.4", | ||
], | ||
) |