forked from SEED-platform/seed-mcm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.13 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
"""
:copyright: (c) 2014 Building Energy Inc
"""
from setuptools import setup, find_packages
from mcm import VERSION
setup(
name='seed-mcm',
version='.'.join(map(str, VERSION)),
description='Map Clean Merge: Convert CSV Data into Python Objects.',
long_description=open('README.md').read(),
author='Gavin McQuillan, Aleck Landgraf',
author_email='[email protected]',
url='https://github.com/SEED-platform/seed-mcm/',
license='Modified BSD',
packages=find_packages(),
include_package_data=True,
package_data={'': ['README.md']},
install_requires=[
'nose',
'python-dateutil',
'unicodecsv',
'xlrd>=0.9.3',
'jellyfish>=0.3.2',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Web Environment :: Mozilla',
'Intended Audience :: Developers',
'License :: OSI Approved :: Modified BSD',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)