-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.01 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
from setuptools import setup
setup(name='pydatasentry',
version='0.1.4',
description='Memory tool for Python-Based Data Science',
url='http://github.com/FourthLion/pydatasentry',
download_url='https://github.com/FourthLion/pydatasentry/tarball/0.1.4',
author='Venkata Pingali',
author_email='pingali@gmail.com',
packages=['pydatasentry'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis'
],
keywords=['pydata', 'pandas', 'documentation',
'regressions', 'tool'],
scripts=['bin/sentry.py'],
#data_files=[
# ('share', ['share/basic_ols.py.template',
# 'share/sentry-conf.py.template'])
#],
package_data={
'pydatasentry': ['share/*template']
},
install_requires=[
],
license='MIT',
)