forked from stitchfix/pyxley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 784 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
from setuptools import setup
setup(
name='pyxley',
version='0.0.9',
author='Nicholas Kridler',
author_email='[email protected]',
license='MIT',
description='Python tools for building Flask-based web applications',
packages = ['pyxley', 'pyxley.filters', 'pyxley.charts', 'pyxley.charts.mg',
'pyxley.charts.datatables', 'pyxley.charts.datamaps',
'pyxley.charts.nvd3', 'pyxley.utils'],
long_description='Python tools for building Flask-based web applications using React.js',
url='https://github.com/stitchfix/pyxley',
keywords=['pyreact', 'flask'],
classifiers=[
'Intended Audience :: Developers',
],
install_requires=[
'flask',
'pandas'
],
scripts = [
"bin/pyxapp"
]
)