X-Git-Url: http://git.scottworley.com/nix-env-apps/blobdiff_plain/b718bf5ead92dffaeadce6dbefc65e7188b7fb20..1ccdf7583e4bb442185a3b36ad61231e5e67218f:/setup.py diff --git a/setup.py b/setup.py index 63dd5f7..b63a7e9 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,15 @@ from setuptools import setup setup( name='apps', + version='1.0.0', + description='A simple GUI for managing declarative nix-env user environments', + author='Scott Worley', + author_email='scottworley@scottworley.com', + url='https://git.scottworley.com/nix-env-apps', + license='GPL-3.0', py_modules=['apps'], entry_points={ 'console_scripts': [ 'apps = apps:main', ], - } -) + })