Skip to content

Commit

Permalink
fix: we don't need to import pip
Browse files Browse the repository at this point in the history
  • Loading branch information
z0w13 committed Jun 20, 2024
1 parent 6ed579d commit 5f746b2
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
from pip._internal.req import parse_requirements
import setuptools
from setuptools import setup

with open('README.rst') as f:
with open("README.rst") as f:
readme = f.read()

with open('HISTORY.rst') as f:
with open("HISTORY.rst") as f:
history = f.read()

setuptools.setup(name='mixcloud',
version='0.4.0+dev',
author='Etienne Millon',
author_email='me@emillon.org',
url="https://github.com/emillon/mixcloud",
license='BSD',
packages=['mixcloud'],
install_requires=[
'python-dateutil',
'requests',
'unidecode',
'pyyaml',
],
description='Bindings for the mixcloud.com API',
long_description=readme + '\n\n' + history,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)
setup(
name="mixcloud",
version="0.4.0+dev",
author="Etienne Millon",
author_email="me@emillon.org",
url="https://github.com/emillon/mixcloud",
license="BSD",
packages=["mixcloud"],
install_requires=[
"python-dateutil",
"requests",
"unidecode",
"pyyaml",
],
description="Bindings for the mixcloud.com API",
long_description=readme + "\n\n" + history,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)

0 comments on commit 5f746b2

Please sign in to comment.