Skip to content

Commit

Permalink
Update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
julvo committed Jun 3, 2021
1 parent 7f5504f commit cbcf901
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ __pycache__
*.swp
*.pyc
dist
build
.DS_Store
examples/FashionMNIST
.vscode/
.vscode/
reloading.egg-info
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from distutils.core import setup
from setuptools import setup

setup(
name = 'reloading',
packages = ['reloading'],
version = '1.0.1',
version = '1.1.0',
license='MIT',
description = 'Reloads source code of a running program without losing state',
author = 'Julian Vossen',
author_email = '[email protected]',
url = 'https://github.com/julvo/reloading',
download_url = 'https://github.com/julvo/reloading/archive/v1.0.1.tar.gz',
download_url = 'https://github.com/julvo/reloading/archive/v1.1.0.tar.gz',
keywords = ['reload', 'reloading', 'refresh', 'loop', 'decorator'],
install_requires=[],
classifiers=[
Expand All @@ -23,5 +23,6 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)

0 comments on commit cbcf901

Please sign in to comment.