-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 807 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 807 Bytes
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
#!/usr/bin/env python
from setuptools import setup
with open('gtable/version.py') as f:
exec(f.read())
with open('README.rst') as f:
long_description = f.read()
setup(name='gtable',
version=__version__,
description='A fast table-like container for data analytics',
packages=['gtable'],
long_description=long_description,
license='Revised BSD-3 Clause',
author='Guillem Borrell',
author_email='guillemborrell@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only'
],
install_requires=['numpy', 'pandas', 'numba'])