Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
La Quadrature du Net
piphone
campaign
Commits
78bd7ece
Commit
78bd7ece
authored
Nov 21, 2014
by
Aymeric Barantal
Browse files
minimal setup.py
parent
7ddfbd59
Changes
2
Hide whitespace changes
Inline
Side-by-side
campaign/__init__.py
View file @
78bd7ece
# -*- coding: utf-8 -*-
try
:
import
pkg_resources
pkg_resources
.
declare_namespace
(
__name__
)
except
ImportError
:
import
pkgutil
__path__
=
pkgutil
.
extend_path
(
__path__
,
__name__
)
setup.py
0 → 100644
View file @
78bd7ece
import
os
from
setuptools
import
setup
,
find_packages
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
README
=
open
(
os
.
path
.
join
(
here
,
'README'
)).
read
()
requires
=
[
'django'
,
]
setup
(
name
=
'campaign'
,
namespace_packages
=
[
'campaign'
],
version
=
'0.0.1'
,
description
=
'PiPhone Campaign Manager.'
,
long_description
=
README
,
classifiers
=
[
"Programming Language :: Python"
],
author
=
''
,
author_email
=
''
,
url
=
''
,
keywords
=
'web django application'
,
packages
=
find_packages
(),
include_package_data
=
True
,
zip_safe
=
False
,
install_requires
=
requires
,
tests_require
=
requires
,
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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