mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
22 lines
595 B
Python
22 lines
595 B
Python
#!/usr/bin/env python
|
|
# -*- coding:utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="DrissionPage",
|
|
version="1.0.0 Alpha",
|
|
author="g1879",
|
|
author_email="g1879@qq.com",
|
|
description="page contains selenium and requests.",
|
|
license="BSD",
|
|
keywords="DrissionPage",
|
|
url="https://gitee.com/g1879/DrissionPage",
|
|
packages=find_packages(),
|
|
long_description="Long descrition is actually short...",
|
|
classifiers=[
|
|
"Development Status :: 1 - Alpha",
|
|
"Topic :: Utilities",
|
|
"License :: OSI Approved :: BSD License",
|
|
],
|
|
) |