-
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.
[+] Added setup directives
- Loading branch information
Showing
22 changed files
with
69 additions
and
3 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 @@ | ||
fmount <[email protected]> |
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,7 @@ | ||
CHANGES | ||
======= | ||
|
||
* [+] Added support to crud for user objects [+] Added admin support both in conf and in the model [+] Added new user endpoint as resource | ||
* [+] Add expiring time support to be able to retrieve (or not) the link [+] Fix oslo config loading and nopaste.conf options [+] Add helper function to check expiring time [+] Make sqlite\_middleware more generic | ||
* [+] Added new options (expire) [+] More config parameters and Log parameter [+] Fix exception in sqlalchemy middleware | ||
* [+] First commit: Importing repo |
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
[metadata] | ||
name = nopaste | ||
summary = A nopaste service | ||
description-file = README.md | ||
license = MIT | ||
author = fmount | ||
author-email = [email protected] | ||
classifier = | ||
Development Status :: 5 - Production/Stable | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 2.7 | ||
keywords = nopaste | ||
|
||
[files] | ||
packages = nopaste | ||
extra-files = nopaste/config/nopaste.conf | ||
|
||
[entry_points] | ||
console_scripts = | ||
nopaste = basicpastev2.run | ||
|
||
[pbr] | ||
autodoc_index_modules = True | ||
|
||
|
||
[wheel] | ||
universal = 1 |
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,13 @@ | ||
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT | ||
import setuptools | ||
|
||
# In python < 2.7.4, a lazy loading of package `pbr` will break | ||
# setuptools if some other modules registered functions in `atexit`. | ||
# solution from: http://bugs.python.org/issue15881#msg170215 | ||
try: | ||
import multiprocessing # noqa | ||
except ImportError: | ||
pass | ||
|
||
setuptools.setup( | ||
setup_requires=['pbr>=2.0.0'], pbr=True) |
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,14 @@ | ||
# content of: tox.ini , put in same dir as setup.py | ||
[tox] | ||
envlist = py27,py36 | ||
skipsdist = true | ||
|
||
#[testenv] | ||
#deps=pytest | ||
#commands=pytest | ||
[testenv] | ||
deps = | ||
nose | ||
unittest2 | ||
commands = | ||
nosetests |