-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 966 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="pythonPackages",
version='0.7.9.9',
author='Thijmen',
author_email='[email protected]',
description='All packages used for YOUR development',
long_description=open('README.txt').read(),
long_description_content_type="text/markdown",
url='https://github.com/your-network/pythonPackages',
project_urls={},
license='LICENSE',
packages=find_packages(),
install_requires=['urllib3',
'Pillow',
'numpy',
'python-dateutil',
'requests',
'rootpath',
'google-cloud',
'google-api-core',
'google-auth',
'google-cloud-logging',
'google-cloud-core',
'google-cloud-pubsub',
'beautifulsoup4'],
zip_safe=False,
)