-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 980 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
from setuptools import setup, find_packages
setup(
name='pive',
packages=['pive', 'pive/visualization'],
use_2to3=True,
include_package_data=True,
version='0.3.3',
url='https://github.com/daboth/pive',
download_url='https://github.com/daboth/pive/tarball/0.3.3',
license='BSD',
description='Interactive visualization tool',
long_description=open('README.md').read(),
author='David Bothe',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=['jinja2']
)