-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.16 KB
/
setup.py
File metadata and controls
36 lines (31 loc) · 1.16 KB
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
from setuptools import setup, find_packages
def read_requirements():
with open("requirements.txt", "r") as req_file:
return [line.strip() for line in req_file.readlines()]
# Read the contents of your README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="proxygetter",
version="0.3.0",
url="https://github.com/ArthurVerrez/proxygetter",
author="Arthur Verrez",
author_email="macdouglass@outlook.com",
description="A utility to get and filter free proxies",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=read_requirements(),
include_package_data=True,
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)