forked from CADWRDeltaModeling/vtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 1.33 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
"""vtools setup file"""
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup,find_packages
# Metadata
PACKAGE_NAME = "vtools"
PACKAGE_VERSION = "1.1"
PACKAGES = ['datastore','data','examples','functions','datastore.dss']
setup(
name=PACKAGE_NAME,
version=PACKAGE_VERSION,
url = "http://bdo.water.ca.gov",
description='time series manipulation tools',
#long_description = get_description(),
author="Eli Ateljevich, Qiang Shu",
author_email="[email protected]",
license="MIT",
install_requires = ['setuptools'],
packages=find_packages(),
#namespace_packages=['vtools','vtools.datastore','vtools.examples','vtools.datastore.dss','vtools.datastore.excel'],
package_data={"vtools.datastore.dss":["doc/*.*","doc/html/*.*","*.pyd","test/backup_dssfile/testfile.dss","examples/*.*"],
"":["doc/*.*","doc/html/*.*","*.pyd"],"vtools.datastore.excel":["test/backup_excelfile/test.xls"],
"vtools.test":["backup/testfile.dss"],
"vtools.data":["*.txt"]},
exclude_package_data = {'': ['*.pyc','*.pyo']},
entry_points = {
'console_scripts': [
'transfer = vtools.datastore.transfer:main'
]},
test_suite = "nose.collector",
tests_require = "nose"
)
print find_packages()