forked from Workiva/furious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (28 loc) · 996 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
from setuptools import find_packages, setup
def get_version():
import imp
import os
with open(os.path.join('furious', '_pkg_meta.py'), 'rb') as f:
mod = imp.load_source('_pkg_meta', 'biloba', f)
return mod.version
setup_args = dict(
name='furious',
version=get_version(),
license='Apache',
description='Furious is a lightweight library that wraps Google App Engine'
'taskqueues to make building dynamic workflows easy.',
author='Robert Kluin',
author_email='[email protected]',
url='http://github.com/WebFilings/furious',
packages=find_packages(exclude=['example']),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Apache',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)
if __name__ == '__main__':
setup(**setup_args)