-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 998 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 998 Bytes
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
from setuptools import setup, find_namespace_packages
with open('./README.md', 'r') as f: README = f.read()
setup(
name="random-header-generator",
version="1.2",
author="miltos_90",
description='Generator of random, realistic http headers.',
long_description=README,
long_description_content_type="text/markdown",
license="GNU General Public License v3.0",
python_requires='>=3.10',
include_package_data = True,
packages=find_namespace_packages(),
install_requires=["bs4", "requests"],
keywords=['python', 'headers', 'http'],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.10",
],
)