forked from vkolev/PyiUpdater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (48 loc) · 1.36 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
sys.path.insert(0, 'src')
from pyi_updater import get_version
setup(
name='PyiUpdater',
version=get_version(),
description='Simple App update framwork',
author='Johny Mo Swag',
author_email='johnymoswag@gmail.com',
url='pyiupdater.jmsapps.net',
download_url=('https://github.com/JohnyMoSwag/Pyi'
'Updater/archive/master.zip'),
license='Apache License 2.0',
extras_require = {
's3': 'PyiUpdater-s3-Plugin>=0.11',
'scp': 'PyiUpdater-scp-Plugin>=0.9',
},
install_requires=[
'appdirs',
'blinker',
'bsdiff4',
'certifi',
'cryptography',
'ed25519',
'jms-utils >= 0.3.2',
'six',
'simple-pbkdf2',
'stevedore',
'urllib3',
],
packages=find_packages('src'),
package_dir={'': 'src'},
# py_modules=['archiver'],
entry_points="""
[console_scripts]
pyi-cli=cli:main
pyi-archiver = pyi_updater.archiver:main
""",
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7'],
)