Skip to content

Commit

Permalink
Added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Hagstedt committed Apr 15, 2015
1 parent 6e87006 commit e0ad906
Show file tree
Hide file tree
Showing 2 changed files with 34 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 @@
[metadata]
description-file = README.md
32 changes: 32 additions & 0 deletions setup.py
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",
],
)

0 comments on commit e0ad906

Please sign in to comment.