-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
27 lines (26 loc) · 990 Bytes
/
setup.py
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
from setuptools import setup
setup(
name="python-pypi-mirror",
version="5.2.1",
author="montag451",
author_email="[email protected]",
maintainer="montag451",
maintainer_email="[email protected]",
url="https://github.com/montag451/pypi-mirror",
description="A script to create a partial PyPI mirror",
long_description=open("README.rst").read(),
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"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",
],
py_modules=["pypi_mirror"],
entry_points={"console_scripts": ["pypi-mirror=pypi_mirror:main"]},
)