diff --git a/.gitignore b/.gitignore index 3433934..f8807a5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ fastprocess/__pycache__/ +build +venv diff --git a/setup.py b/setup.py index 9b86314..ab4b75e 100644 --- a/setup.py +++ b/setup.py @@ -2,15 +2,23 @@ from setuptools import setup setup( - name = 'fastprocess', - version = '0.1.0', - author = 'Dylan Stephano-Shachter', - author_email = 'dstephanoshachter@gmail.com', - description = ('A fast subprocess library'), - license = 'LGPL', - url = 'https://github.com/dstathis/fastprocess', - packages = ['fastprocess'], - long_description = open( + name='fastprocess', + version='0.1.0', + author='Dylan Stephano-Shachter', + author_email='dstephanoshachter@gmail.com', + description=('A fast subprocess library'), + license='LGPL', + url='https://github.com/dstathis/fastprocess', + packages=['fastprocess'], + long_description=open( os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.md') - ).read() + ).read(), + long_description_content_type='text/markdown', + classifiers=[ + 'Programming Language :: Python', + 'Operating System :: POSIX', + 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', + 'Development Status :: 4 - Beta', + 'Topic :: Software Development :: Libraries :: Python Modules' + ] )