forked from ethronsoft/gcspypi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 835 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
30
31
32
33
from setuptools import setup, find_packages
setup(
name='gcspypi',
version='1.0.7',
author='Ethronsoft',
author_email='[email protected]',
license=open("LICENSE").read(),
keywords="pypi private repository gcs google cloud storage",
url="https://github.com/ethronsoft/gcspypi",
include_package_data=True,
description="Private packages repository backed by Google Cloud Storage",
packages=find_packages(),
zip_safe=False,
install_requires=[
"tqdm",
"colorama",
"six==1.11.0",
"google-cloud-storage==1.5.0",
],
tests_require=[
"pytest",
"pytest-cov"
],
setup_requires=[
"pytest-runner"
],
entry_points={
'console_scripts': [
'gcspypi = ethronsoft.gcspypi.__main__:main'
]
}
)