# HG changeset patch # User Peter Sanchez # Date 1584192704 25200 # Sat Mar 14 06:31:44 2020 -0700 # Node ID 29dfccbf3d624553077f16250831b8d738bb4ce0 # Parent cb91880128d79e746a87152f7b2144db2e2fca0d Removing BB links in setup diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -1,34 +1,33 @@ import os -from setuptools import setup, find_packages +from setuptools import find_packages, setup -if os.path.exists('README.rst'): - long_description = open('README.rst', 'r').read() +if os.path.exists("README.rst"): + long_description = open("README.rst", "r").read() else: - long_description = 'See https://bitbucket.org/netlandish/sendypy/' + long_description = "See https://hg.code.netlandish.com/~netlandish/sendypy" setup( - name='sendypy', - version=__import__('sendy').get_version(), + name="sendypy", + version=__import__("sendy").get_version(), packages=find_packages(), - description='Python Interface for the Sendy API', - author='Netlandish Inc.', - author_email='hello@netlandish.com', - url='https://bitbucket.org/netlandish/sendypy/', + description="Python Interface for the Sendy API", + author="Netlandish Inc.", + author_email="hello@netlandish.com", + url="https://hg.code.netlandish.com/~netlandish/sendypy", long_description=long_description, - platforms=['any'], - install_requires=['requests>=2.19.1'], + platforms=["any"], + install_requires=["requests>=2.19.1"], classifiers=[ - 'Development Status :: 4 - Beta', - 'Intended Audience :: Developers', - 'Natural Language :: English', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Environment :: Web Environment', + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Natural Language :: English", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Environment :: Web Environment", ], include_package_data=True, )