Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Bollweg committed Apr 18, 2016
1 parent 0b61bb9 commit 59d1ec8
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Expand Up @@ -43,5 +43,5 @@ test:
- fontconfig # [linux]

about:
home: https://github.com/Anaconda-Server/nb_anacondacloud
home: https://github.com/Anaconda-Platform/nb_anacondacloud
license: BSD
2 changes: 1 addition & 1 deletion nb_anacondacloud/__init__.py
@@ -1,5 +1,5 @@
# flake8: noqa
from .version import *
from ._version import *
from .handlers import load_jupyter_server_extension


Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -11,14 +11,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anaconda-Server/nb_anacondacloud.git"
"url": "git+https://github.com/Anaconda-Platform/nb_anacondacloud.git"
},
"author": "",
"author": "Continuum Analytics",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Anaconda-Server/nb_anacondacloud/issues"
"url": "https://github.com/Anaconda-Platform/nb_anacondacloud/issues"
},
"homepage": "https://github.com/Anaconda-Server/nb_anacondacloud",
"homepage": "https://github.com/Anaconda-Platform/nb_anacondacloud",
"devDependencies": {
"casperjs": "1.1.0-beta5",
"eslint": "^1.10.3",
Expand Down
13 changes: 10 additions & 3 deletions setup.py
@@ -1,11 +1,18 @@
import setuptools
from os.path import join

# should be loaded below
__version__ = None

with open(join('nb_anacondacloud', '_version.py')) as version:
exec(version.read())

setuptools.setup(
name="nb_anacondacloud",
version='0.2.0',
url="https://github.com/Anaconda-Server/nb_anacondacloud",
version=__version__,
url="https://github.com/Anaconda-Platform/nb_anacondacloud",
author="Continuum Analytics",
description="Integration with Anaconda-Cloud",
description="Upload Jupyter notebooks to anaconda.org with a single click",
long_description=open('README.md').read(),
packages=setuptools.find_packages(),
include_package_data=True,
Expand Down

0 comments on commit 59d1ec8

Please sign in to comment.