-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathsetup.py
33 lines (30 loc) · 927 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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",
"django-braces"
],
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",
],
)