Skip to content

Commit a5c2fb2

Browse files
author
Emmanouil Konstantinidis
committed
Init Setup.py
1 parent 0ab1787 commit a5c2fb2

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: python
2+
3+
python:
4+
- "3.3"
5+
- "3.4"
6+
- "3.5"
7+
8+
install:
9+
- pip install -r requirements.txt
10+
11+
script:
12+
- scripts/runtests

MANIFEST.in

Whitespace-only changes.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# drf-docs
2-
Documention for Web APIs made with Django Rest Framework
2+
Documentation for Web APIs made with Django Rest Framework
33

44

55
### Prerequisites
66

7-
- Python 3.5
7+
- Python (3.3, 3.4, 3.5)
8+
- Django (1.8, 1.9)
89

910

1011
### Development

setup.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name="drf-docs",
5+
version="0.0.1",
6+
author="Emmanouil Konstantinidis",
7+
author_email="manos@iamemmanouil.com",
8+
packages=["drfdocs"],
9+
include_package_data=True,
10+
url="http://www.drfdocs.com",
11+
license='BSD',
12+
description="Documentation for Web APIs made with Django Rest Framework.",
13+
long_description=open("README.txt").read(),
14+
install_requires=[],
15+
)

0 commit comments

Comments
 (0)