-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (45 loc) · 1.16 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/python
"""
Package setup.
"""
from setuptools import setup, find_packages
def readme():
"""
Pull the readme contents for the package properties.
"""
with open('README.md') as readme_file:
return readme_file.read()
REQUIRES = [
'msal',
'pyreadline',
'requests',
'ruamel.yaml<=15.66.0',
]
setup(
name='panoptoindexconnector',
version='1.0.1',
author='Stephen Bianamara',
author_email='[email protected]',
description=('A general application for connecting a panopto search index to an external source'),
long_description=readme(),
keywords=['python', 'panopto', 'connector', 'attivio', 'coveo', 'microsoft_graph'],
install_requires=REQUIRES,
package_data={
},
# All packages found under src
package_dir={'': 'src'},
# Use all packages under src
packages=find_packages('src'),
setup_requires=REQUIRES,
tests_require=[
],
entry_points={
'console_scripts': [
'panopto-connector=panoptoindexconnector.connector:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Utilities'
],
)