Skip to content

Commit

Permalink
renamed package to 'liset' for simplicity
Browse files Browse the repository at this point in the history
 Modifications qui seront validées :
	modifié :         README.md
	modifié :         doc/demo_liset_clusters.ipynb
	renommé :         liset_clusters/__init__.py -> liset/__init__.py
	renommé :         liset_clusters/liset_clusters.py -> liset/liset.py
	renommé :         liset_clusters/version.py -> liset/version.py
	modifié :         setup.py
  • Loading branch information
majeau-bettez committed Jun 1, 2018
1 parent c22c39b commit e556575
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 39 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ Installation
This module should normally be installable via `pip`:

```
pip install git+git://github.com/majeau-bettez/LISET#egg=liset_clusters
pip install git+git://github.com/majeau-bettez/LISET#egg=liset
```
57 changes: 24 additions & 33 deletions doc/demo_liset_clusters.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion liset_clusters/__init__.py → liset/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .version import __version__
from liset_clusters.liset_clusters import *
from liset.liset import *

__author__ = 'Guillaume Majeau-Bettez'
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from setuptools import setup

exec(open('liset_clusters/version.py').read())
exec(open('liset/version.py').read())

setup(
name='liset_clusters',
description= 'A simple clustering tool to assist Lifecycle Screening of Emerging Technologies (LiSET)',
name='liset',
description= 'A simple clustering tool to assist the Lifecycle Screening of Emerging Technologies (LiSET)',
long_description=open('README.md').read(),
url='https://github.com/majeau-bettez/LiSET',
author='Guillaume Majeau-Bettez',
author_email='guillaume.majeau-bettez@ntnu.no',
version=__version__,
packages=['liset_clusters',],
packages=['liset',],
install_requires = ['numpy >= 1.14.2',
'pandas >= 0.22.0',
'scipy >= 1.0.0',
Expand Down

0 comments on commit e556575

Please sign in to comment.