-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·42 lines (37 loc) · 1.17 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
36
37
38
39
40
41
42
#! /usr/bin/python
"""Setuptools-based setup script for datreant.data.
For a basic installation just type the command::
python setup.py install
"""
from setuptools import setup, find_packages
setup(name='datreant.data',
version='0.7.1',
description='convenient data storage and retrieval in HDF5 for Treants',
author='David Dotson',
author_email='[email protected]',
url = 'http://datreant.org/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages('src'),
namespace_packages=['datreant'],
package_dir={'': 'src'},
scripts=[],
license='BSD',
long_description=open('README.rst').read(),
install_requires=[
'datreant.core==0.7.1',
'six',
'numpy',
'pandas',
'tables',
'h5py',
]
)