1 from setuptools import setup, find_packages |
|
2 |
|
3 setup( |
|
4 name = 'borgend', |
|
5 version = '0.1.0', |
|
6 author = 'Tuomo Valkonen', |
|
7 author_email = 'tuomov@iki.fi', |
|
8 url = 'https://tuomov.iki.fi/software/borgend/', |
|
9 packages = ['borgend'], |
|
10 data_files=[], |
|
11 entry_points= { |
|
12 "console_scripts": ["borgend = borgend.__main__:main"] |
|
13 }, |
|
14 #setup_requires=['py2app'], |
|
15 install_requires=[ |
|
16 "rumps", |
|
17 "keyring", |
|
18 "PyYAML", |
|
19 "xdg;platform_system!='darwin'", |
|
20 ], |
|
21 app=['borgend/__main__.py'], |
|
22 setup_requires=['py2app'], |
|
23 options={ |
|
24 'py2app': { |
|
25 'argv_emulation': False, |
|
26 'plist': { |
|
27 'LSUIElement': True, |
|
28 }, |
|
29 'excludes': ['wx', 'matplotlib', 'numpy', 'scipy', 'sip'], |
|
30 } |
|
31 } |
|
32 ) |
|