from setuptools import setup, find_packages ABOUT = {} with open(os.path.join(os.path.dirname(__file__), 'uniquenames', '__about__.py')) as file: exec(file.read(), ABOUT) LONG_DESCRIPTION = """# pyuniquenames Select shortest unique names for group members. See [Bitbucket](https://bitbucket.org/ajk/pyuniquenames) for more information. """ setup( name='uniquenames', version=ABOUT['__version__'], description='Select shortest unique names for group members', url='https://bitbucket.org/ajk/pyuniquenames', author='Andrew Kay', author_email='projects@ajk.me', packages=find_packages(exclude=('tests',)) long_description=readme, long_description_content_type='text/markdown', classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3' ] )