diff --git a/setup.py b/setup.py index 446fb34..119060a 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,21 @@ import setuptools +def readme(): + with open("README.md") as f: + README = f.read() + return README + + setuptools.setup( version='0.2.1', name='autoenv', description='Directory-based environments.', - author='Kenneth Reitz', - author_email='_@kennethreitz.com', + long_description=readme(), + long_description_content_type="text/markdown", + author='Nishchith Shetty', + author_email='inishchith@gmail.com', license='See LICENSE.', - url='https://github.com/kennethreitz/autoenv', + url='https://github.com/inishchith/autoenv', scripts=['activate.sh'], )