-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 901 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 find_namespace_packages, setup
packages = [package for package in find_namespace_packages(where='./src',
include='gcs-fake-pii-file-creator.*')]
setup(
name='gcs-fake-pii-file-creator',
version='0.0.1',
author='Marcelo Costa',
author_email='mesmacosta@gmail.com',
description='Library for creating CSV files in GCS with fake sensible data',
platforms='Posix; MacOS X; Windows',
packages=packages,
package_dir={
'': 'src'
},
include_package_data=True,
install_requires=(
'pandas',
'faker',
'google-cloud-storage',
),
setup_requires=(
'pytest-runner',
),
tests_require=(
'pytest-cov',
),
classifiers=(
'Development Status :: 1 - Alpha',
'Programming Language :: Python :: 3.7',
),
)