-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.04 KB
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__version__ = '0.1.3'
setup(
name='chrome_webstore_download',
python_requires=">=3",
version=__version__,
packages=find_packages(),
author="Jay MOULIN",
description="Google Chrome Webstore Downloader",
long_description=open('README.rst').read(),
include_package_data=True,
url='http://github.com/jaymoulin/docker-google-chrome-webstore-download/',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Intended Audience :: Developers",
],
install_requires=["requests"],
entry_points={
'console_scripts': [
'chrome-webstore-download = chrome_webstore_download.download:main',
],
},
license="MIT",
)