This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
6 additions
and
26 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ Please follow these guidelines when making contributions to this app. | |
|
||
Clone the repository and change directory: | ||
|
||
$ git clone [email protected]:ixc/icekit-events.git | ||
$ git clone [email protected]:ic-labs/icekit-events.git | ||
$ cd icekit-events | ||
|
||
You don't need to install the project to run tests. You just need `tox`: | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ TODO | |
|
||
Install the app into your virtualenv: | ||
|
||
(venv)$ pip install -e git+ssh://[email protected]/ixc/<app_name>.git#egg=<app_name> | ||
(venv)$ pip install -e git+ssh://[email protected]/ic-labs/<app_name>.git#egg=<app_name> | ||
|
||
Update your settings module: | ||
|
||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "icekit_events", | ||
"version": "0.0.0", | ||
"homepage": "https://github.com/ixc/icekit-events", | ||
"homepage": "https://github.com/ic-labs/icekit-events", | ||
"authors": [ | ||
"Tai Lee <[email protected]>" | ||
], | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -41,35 +41,31 @@ | |
use_scm_version={'version_scheme': 'post-release'}, | ||
author='Interaction Consortium', | ||
author_email='[email protected]', | ||
url='https://github.com/ixc/icekit-events', | ||
url='https://github.com/ic-labs/icekit-events', | ||
description='', | ||
long_description=locals().get('long_description', ''), | ||
license='MIT', | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
install_requires=[ | ||
'coverage', | ||
'Django<1.9', | ||
'django-dynamic-fixture', | ||
'django-icekit[publishing]', | ||
'django-model-utils<2.4', # See: https://github.com/jp74/django-model-publisher/pull/26 | ||
'django-nose', | ||
'django-polymorphic<0.8', # ICEKit Events is not yet compatible with API changes in 0.8+ | ||
'django-polymorphic-tree', | ||
'django-timezone', | ||
'django-webtest', | ||
'mkdocs', | ||
'nose-progressive', | ||
'python-dateutil', | ||
'pytz', | ||
'six', | ||
'sqlparse', # Required for SQL migrations, apparently | ||
'WebTest', | ||
], | ||
extras_require={ | ||
'dev': ['ipdb', 'ipython'], | ||
'fluentevent': ['django-fluent-contents'], | ||
'postgres': ['psycopg2'], | ||
'test': ['coverage', 'django-nose', 'nose-progressive', 'django-webtest', 'WebTest'] | ||
}, | ||
setup_requires=['setuptools_scm'], | ||
) |
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