-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.24 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
43
44
45
from setuptools import setup, find_packages
from codecs import open # To use a consistent encoding
import os
# Get the current directory path.
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the top-level README.
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Configure python distribution package.
setup(
name='platypus-analytics',
version='0.1.0.dev',
description='Analytics for Platypus LLC',
long_description=long_description,
url='https://github.com/platypusllc/analytics',
author='Pras Velagapudi',
author_email='[email protected]',
license='BSD',
keywords='data analysis',
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
entry_points={
'console_scripts': [
'import=platypus.io:import'
]
},
install_requires=[
'pandas',
'pymongo',
'pyserial',
'six',
'utm'
],
test_suite="tests",
)