-
Notifications
You must be signed in to change notification settings - Fork 258
/
setup.py
35 lines (34 loc) · 1.03 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
from setuptools import setup
setup(
name='pyxley',
version='0.1.0',
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', 'pyxley.charts.plotly'],
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"
],
package_data = {
'pyxley': [
'LICENSE.txt',
'pyxley/assets/bundle.js',
'pyxley/assets/templates/index.html',
'pyxley/assets/css/main.css'
]
},
include_package_data=True
)