-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
22 lines (20 loc) · 851 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
# The setup.py file will contain information about the package
# specifically the name of the package, its version, platform-dependencies, etc.
from setuptools import setup, find_packages
with open('requirements.txt', encoding='utf-8') as f:
requirements = f.read().splitlines()
setup(name='vivainsights',
version='0.3.3',
url='https://github.com/microsoft/vivainsights',
license= 'MIT',
author='Martin Chan',
author_email='martin.chan@microsoft.com',
description='Analyze and Visualize data from Microsoft Viva Insights',
packages=find_packages(exclude=['tests']),
long_description=open('README.md').read(),
zip_safe=False,
include_package_data=True,
package_data={'vivainsights': ['data/*.csv']},
install_requires=requirements,
dependencies='dynamic'
)