-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.11 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
36
#!/usr/bin/env python
from setuptools import find_packages, setup
import chromexup
setup(
name=chromexup.__name__,
version=chromexup.__version__,
description=chromexup.__description__,
long_description=open('README.md').read(),
url=chromexup.__url__,
author=chromexup.__author__,
author_email=chromexup.__author_email__,
license=chromexup.__license__,
classifiers=[
'Development Status :: 3 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Utilities'
],
keywords='browser chrome chromium external extension updater',
packages=find_packages(),
install_requires=['requests'],
entry_points={
'console_scripts': ['chromexup = chromexup.main:main']
},
include_package_data=True,
zip_safe=False,
)