-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 868 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
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md")) as f:
long_description = f.read()
requirements = [
"types-aiofiles",
"aiofiles",
"aiohttp",
"requests",
"types-requests",
"tqdm",
"types-tqdm",
]
setup(
name="phantombrowser",
version="v0.0.3",
description="Typed Python wrapper for Phantomjs Cloud API",
long_description=long_description,
long_description_content_type="text/markdown",
author="guangrei",
author_email="[email protected]",
url="https://github.com/guangrei/PhantomBrowser",
scripts=["bin/phantomdl"],
packages=["PhantomBrowser"],
package_data={"PhantomBrowser": ["py.typed"]},
license="MIT",
platforms="any",
install_requires=requirements,
)