-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
8fd8211
commit 301b7e6
Showing
1 changed file
with
28 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,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", | ||
], | ||
) |