Skip to content
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.

Commit

Permalink
Uploaded to pypi!
Browse files Browse the repository at this point in the history
  • Loading branch information
YuukanOO committed May 3, 2018
1 parent c214571 commit 06fca86
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.vscode
__pycache__
node_modules
atlas.egg-info
atlas_core.egg-info
dist
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,16 @@ Have a look at the [📚 documentation folder](documentation).

### PIP

Run `RUN pip install git+https://github.com/atlassistant/atlas-sdk.git && pip install git+https://github.com/atlassistant/atlas.git`
`pip install atlas-core`

### Docker

- Build the image with `docker build . -t atlas`
- Run `docker run --rm -it -v <a folder containing an atlas.yml file>:/atlas -p 5000:5000 atlas`

### Manual
### Source

Install the **atlas-sdk** using [its own instructions](https://github.com/atlassistant/atlas-sdk).

Then, `git clone` this repository and run `python setup.py install`.
`git clone` this repository and run `python setup.py install`.

### NLU backends

Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
from setuptools import setup

setup(
name='atlas',
name='atlas-core',
version='1.0.0',
description='An open-source assistant built for people',
author='Julien LEICHER',
license='GPL-3.0',
packages=['atlas', 'atlas.client', 'atlas.interpreters', 'atlas.web'],
include_package_data=True,
install_requires=[
'atlas_sdk==1.0.0',
'atlas-sdk==1.0.0',
'transitions==0.6.4',
'Flask==0.12.2',
'Flask-RESTful==0.3.6',
Expand Down

0 comments on commit 06fca86

Please sign in to comment.