Skip to content

Commit 26adcbf

Browse files
committed
Updated readme and setup.py to reflect new documentation site.
1 parent 9ebc154 commit 26adcbf

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Aaron M
3+
Copyright (c) 2015 Nullism
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Pycnic Framework
2+
3+
For the latest documentation checkout [pycnic.nullism.com](http://pycnic.nullism.com/docs).
4+
5+
# Installation
6+
7+
Now that Pycnic is available on PyPI, it may be installed with pip.
8+
9+
pip install pycnic
10+
11+
# Running
12+
13+
Pycnic may be ran with any WSGI-compliant server, such as [Gunicorn](http://gunicorn.org).
14+
15+
gunicorn file:app
16+
17+
18+

setup.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
setup(name='pycnic',
1111
version = __version__,
1212
description = 'A simple, ultra light-weight, pure-python RESTful JSON API framework.',
13-
long_description = '''
14-
Pycnic offers a fully WSGI compliant JSON only web framework for quickly creating fast, modern web applications
15-
based on AJAX. Static files are served over a CDN or with a standard webserver, like Apache.
16-
''',
13+
long_description = (
14+
'Pycnic offers a fully WSGI compliant JSON only web framework for '
15+
'quickly creating fast, modern web applications '
16+
'based on AJAX. Static files are served over a CDN or '
17+
'with a standard webserver, like Apache.'),
1718
author = 'Aaron Meier',
1819
author_email = '[email protected]',
1920
packages = ['pycnic'],

0 commit comments

Comments
 (0)