-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (28 loc) · 955 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
29
30
31
32
33
34
35
36
#! /usr/bin/env python
# Copyright (c) 2011 PediaPress GmbH
# See README.txt for additional licensing information.
from setuptools import setup
def get_version():
d = {}
execfile("batchrender/__init__.py", d, d)
return d["__version__"]
install_requires=['mwlib', 'py', 'argparse']
def main():
setup(
name="mwlib.batchrender",
version=get_version(),
entry_points = {
'console_scripts': ['batchrender = batchrender.batchrender:main'],
},
install_requires=install_requires,
packages=["batchrender",],
zip_safe=False,
include_package_data=True,
url = "http://code.pediapress.com/",
description="batch render list of collections",
long_description = open("README.txt", "r").read(),
license="BSD License",
maintainer="pediapress.com",
maintainer_email="[email protected]")
if __name__ == '__main__':
main()