-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 1002 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
from setuptools import setup
setup(
name='maninex',
version='0.4',
description="An extension manager to replace Google's WebStore",
long_description=open('README.rst').read(),
url='https://github.com/InspectorMustache/maninex',
packages=['maninex'],
author='Pu Anlai',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only'
],
keywords='chromium extension webstore inox iridium',
install_requires=['requests'],
python_requires='>=3.5',
entry_points={
'console_scripts': [
'maninex = maninex:main'
]
}
)