1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
import re
from setuptools import setup
from setuptools import find_packages
import sys
desc = "A semi hard Cornish cheese, also queries PyPI (PyPI client)"
long_desc = open('README.rst').read() + "\n\n" + open('CHANGES.rst').read()
long_desc = re.sub(r":[a-z]*:`", "`", long_desc)
exec(open('yarg/__about__.py').read())
setup(name=__title__,
version=__version__,
url=__url__,
author=__author__,
author_email=__email__,
maintainer=__author__,
maintainer_email=__email__,
description=desc,
long_description=long_desc,
license=__license__,
platforms=['linux'],
packages=find_packages(exclude=["tests"]),
install_requires=['requests', ],
requires=['requests', ],
provides=[__title__, ],
keywords=['pypi', 'client', 'packages'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving :: Packaging',
],
zip_safe=True,
)
|