-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (39 loc) · 1.3 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
#!/usr/bin/env python
from distutils.core import setup
__version_info__ = (0, 4, 6)
__version__ = '.'.join(map(str, __version_info__))
appName = 'pyBoincPlotter'
appAuthor = 'obtitus' # [at] gmail.com
with open('pyBoincPlotter/version.py', 'w') as f:
f.write("""# This file is autogenerated by setup.py, do not edit.
__version_info__ = {0}
__version__ = "{1}"
appName = "{2}"
appAuthor = "{3}"
""".format(__version_info__, __version__, appName, appAuthor))
if __name__ == '__main__':
setup(
name='pyBoincPlotter',
version=__version__,
author=appAuthor,
author_email='[email protected]',
packages=['pyBoincPlotter', 'pyBoincPlotter.plot', 'pyBoincPlotter.test'],
scripts=['bin/py-boinc-plotter','bin/py-boinc-change-prefs'],
url='http://pypi.python.org/pypi/pyBoincPlotter/',
license='LICENSE.txt',
description='Provides parsing and plotting of boinc statistics and badge information.',
long_description=open('README.md').read(),
install_requires=[
"requests",
"keyring",
"pandas",
"scipy",
"numpy",
"matplotlib",
#"PIL",
"lxml",
"beautifulsoup4",
"appdirs",
"mako"
],
)