Skip to content

Commit

Permalink
Adding setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MagnusKnutas committed Mar 10, 2015
1 parent 8fd8211 commit 301b7e6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'magnusknutas'

import os
from setuptools import setup


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name = "restedorm",
version = "0.0.1",
author = "Magnus Knutas",
author_email = "magnus@thefarm.se",
description = "A restful orm hook, inspired by django-orm",
license = "BSD",
keywords = "Restful ORM Django-rest-framework DRF",
url = "https://github.com/MagnusKnutas/restedorm/",
packages=['restedorm'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)

0 comments on commit 301b7e6

Please sign in to comment.