forked from larray-project/larray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (48 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (48 loc) · 1.57 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from __future__ import print_function
import os
from setuptools import setup, find_packages
def readlocal(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
DISTNAME = 'larray'
VERSION = '0.6.1'
AUTHOR = 'Gaetan de Menten, Geert Bryon'
AUTHOR_EMAIL = 'gdementen@gmail.com'
DESCRIPTION = "N-D labeled arrays in Python"
LONG_DESCRIPTION = readlocal("README.rst")
INSTALL_REQUIRES = ['numpy >= 1.9', 'pandas >= 0.13.1']
TESTS_REQUIRE = ['nose >= 1.0']
TEST_SUITE = 'nose.collector'
LICENSE = 'GPLv3'
PACKAGE_DATA = {'larray': ['tests/data/*']}
URL = 'https://github.com/liam2/larray'
CLASSIFIERS = [
'Development Status :: 4 - Beta'
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
]
setup(
name=DISTNAME,
version=VERSION,
license=LICENSE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
classifiers=CLASSIFIERS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
url=URL,
test_suite=TEST_SUITE,
packages=find_packages(),
package_data=PACKAGE_DATA,
)