-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
28 lines (26 loc) · 998 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
28
from setuptools import setup
with open('megamanager/__version__.py') as f: exec(f.read())
setup(
name='megamanager',
version=__version__,
description='Multiple MEGA.co.nz account manager that has synchronization and compression capabilities. ',
url='https://github.com/szmania/mega_manager',
author='Curtis Szmania',
author_email='szmania@yahoo.com',
license='GNU General Public License v3.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
],
keywords=['megamanager', 'mega', 'mega.co.nz', 'mega.nz', 'cloud', 'compression'],
python_requires='>=3.10',
packages=["megamanager"],
install_requires=['numpy', 'psutil'],
entry_points={
'console_scripts': [
'megamanager = megamanager.__main__:main',
],
},
)