forked from kaiwk/my_cookies
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 878 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
from setuptools import setup
setup(
name="my_cookies",
packages=["my_cookies"],
version="0.1.2",
license="MIT",
description="Retrieve chrome cookies",
author="Wang Kai",
author_email="[email protected]",
url="https://github.com/kaiwk/my_cookies",
download_url="https://github.com/kaiwk/my_cookies",
keywords=["browser", "cookies"],
scripts=["bin/my_cookies"],
install_requires=["browser_cookie3"],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta", or "5 - Production/Stable"
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)