-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 681 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 681 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='utilsDAWS',
version='2.14.15',
description='This package has shared classes and functions for data analysis and web scraping purposes.',
author='Yu-Chang Ho (Andy)',
author_email='ycaho@ucdavis.edu',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
long_description=open('README.md').read(),
install_requires=[
'pathlib',
'requests',
'pandas',
'numpy',
'googletrans'
],
# license='LICENSE.txt',
)
'''
To Install:
$ pip install git+https://github.com/hippoandy/Utils_Data_Analysis_Python
'''