Skip to content

Commit

Permalink
Remove README depencendy from setup.py (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
MisaOgura committed Sep 26, 2019
1 parent b5278dc commit cde4565
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion flashtorch/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.0'
__version__ = '0.1.1'
30 changes: 26 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,32 @@
from setuptools import setup, find_packages
#!/usr/bin/env python
""" FlashTorch is a feature visualization toolkit.
It is built with PyTorch, for neural networks in PyTorch.
Neural networks are often described as "black box". The lack of understanding
on how neural networks make predictions enables unpredictable/biased models,
causing real harm to society and a loss of trust in AI-assisted systems.
Feature visualization is an area of research, which aims to understand how
neural networks perceive images. However, implementing such techniques is often
complicated.
FlashTorch was created to solve this problem!
You can apply feature visualization techniques such as saliency maps and
activation maximization on your model, with as little as a few lines of code.
It is compatible with pre-trained models that come with torchvision, and
seamlessly integrates with other custom models built in PyTorch.
All FlashTorch wheels on PyPI are distrubuted with the MIT License.
"""

from setuptools import setup, find_packages

with open('README.md', 'r') as fh:
long_description = fh.read()
DOCLINES = (__doc__ or '').split("\n")
long_description = "\n".join(DOCLINES[2:])

version = '0.1.0'
version = '0.1.1'

setup(
name='flashtorch',
Expand Down

0 comments on commit cde4565

Please sign in to comment.