-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (47 loc) · 1.37 KB
/
setup.py
File metadata and controls
53 lines (47 loc) · 1.37 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
packages = ["requester"]
requires = [
"requests>=2.4.3",
"scapy>=2.3.3",
"pytest>=3.2.1",
"pytest-cov>=2.5.1",
"urllib3>=1.22"
]
with open("README.md", "r") as f:
readme = f.read()
with open("VERSION", "r") as f:
version = f.read()
setup(
name = "requester",
version = version,
description = "Python HTTP/HTTPS Requester.",
long_description = readme,
author = "kssim",
author_email = "ksub0912@gmail.com",
url = "https://github.com/kssim/requester",
packages = packages,
packages_data = {},
package_dir = {},
include_package_data = True,
install_requires = requires,
setup_requires=["pytest-runner"],
tests_require=["pytest"],
license = "MIT",
zip_safe = False,
scripts = ["bin/requester"],
classifiers = (
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing"
),
)