Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
corepost
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
nexlab
corepost
Commits
4cffb832
Commit
4cffb832
authored
Aug 25, 2011
by
Jacek Furmankiewicz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring project structure, adding setup.py
parent
bded1c1b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
39 additions
and
1 deletion
+39
-1
.pydevproject
.pydevproject
+1
-1
__init__.py
corepost/__init__.py
+0
-0
enums.py
corepost/enums.py
+0
-0
__init__.py
corepost/test/__init__.py
+0
-0
web_test.py
corepost/test/web_test.py
+0
-0
web.py
corepost/web.py
+0
-0
setup.py
setup.py
+38
-0
No files found.
.pydevproject
View file @
4cffb832
...
@@ -5,6 +5,6 @@
...
@@ -5,6 +5,6 @@
<pydev_property
name=
"org.python.pydev.PYTHON_PROJECT_INTERPRETER"
>
pypy
</pydev_property>
<pydev_property
name=
"org.python.pydev.PYTHON_PROJECT_INTERPRETER"
>
pypy
</pydev_property>
<pydev_property
name=
"org.python.pydev.PYTHON_PROJECT_VERSION"
>
python 2.7
</pydev_property>
<pydev_property
name=
"org.python.pydev.PYTHON_PROJECT_VERSION"
>
python 2.7
</pydev_property>
<pydev_pathproperty
name=
"org.python.pydev.PROJECT_SOURCE_PATH"
>
<pydev_pathproperty
name=
"org.python.pydev.PROJECT_SOURCE_PATH"
>
<path>
/corepost
/src
</path>
<path>
/corepost
</path>
</pydev_pathproperty>
</pydev_pathproperty>
</pydev_project>
</pydev_project>
src/
corepost/__init__.py
→
corepost/__init__.py
View file @
4cffb832
File moved
src/
corepost/enums.py
→
corepost/enums.py
View file @
4cffb832
File moved
src/
corepost/test/__init__.py
→
corepost/test/__init__.py
View file @
4cffb832
File moved
src/corepost/test/server
_test.py
→
corepost/test/web
_test.py
View file @
4cffb832
File moved
src/corepost/server
.py
→
corepost/web
.py
View file @
4cffb832
File moved
setup.py
0 → 100644
View file @
4cffb832
'''
Created on 2011-08-25
@author: jacekf
'''
import
os
from
setuptools
import
setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def
read
(
fname
):
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
))
.
read
()
setup
(
name
=
"CorePost"
,
version
=
"0.0.1"
,
author
=
"Jacek Furmankiewicz"
,
author_email
=
"jacek99@gmail.com"
,
description
=
(
"A Twisted Web REST micro-framework"
),
license
=
"BSD"
,
keywords
=
"twisted rest flask sinatra get post put delete web"
,
url
=
"https://github.com/jacek99/corepost"
,
packages
=
[
'corepost'
,
],
long_description
=
read
(
'README.md'
),
classifiers
=
[
"Development Status :: 3 - Alpha"
,
"Environment :: Web Environment"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: BSD License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python"
,
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
,
"Topic :: Software Development :: Libraries :: Python Modules"
,
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment