-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconf.py
More file actions
76 lines (62 loc) · 2.4 KB
/
Copy pathconf.py
File metadata and controls
76 lines (62 loc) · 2.4 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# This is the main settings file for package setup and PyPi deployment.
# Sphinx configuration is in the docsrc folder
# Main package name
PACKAGE_NAME = 'capiq_excel'
# Package version in the format (major, minor, release)
PACKAGE_VERSION_TUPLE = (0, 4, 2)
# Short description of the package
PACKAGE_SHORT_DESCRIPTION = 'Capital IQ Data Downloader using Python to drive Excel Plugin'
# Long description of the package
PACKAGE_DESCRIPTION = """
Use this tool to drive Excel using the Capital IQ plugin to download Capital IQ data. See more at the
repo page: https://github.com/nickderobertis/capiq-excel-downloader-py
"""
# Author
PACKAGE_AUTHOR = "Nick DeRobertis"
# Author email
PACKAGE_AUTHOR_EMAIL = 'whoopnip@gmail.com'
# Name of license for package
PACKAGE_LICENSE = 'MIT'
# Classifications for the package, see common settings below
PACKAGE_CLASSIFIERS = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
# Add any third party packages you use in requirements here
PACKAGE_INSTALL_REQUIRES = [
# Include the names of the packages and any required versions in as strings
# e.g.
# 'package',
# 'otherpackage>=1,<2'
'exceldriver',
'processfiles',
'pypiwin32',
'openpyxl',
'pandas',
'xlrd'
]
# Sphinx executes all the import statements as it generates the documentation. To avoid having to install all
# the necessary packages, third-party packages can be passed to mock imports to just skip the import.
# By default, everything in PACKAGE_INSTALL_REQUIRES will be passed as mock imports, along with anything here.
# This variable is useful if a package includes multiple packages which need to be ignored.
DOCS_OTHER_MOCK_IMPORTS = [
# Include the names of the packages as they would be imported, e.g.
# 'package',
'pythoncom',
'win32com',
'pywintypes',
'winreg'
]
PACKAGE_URLS = {
'Code': 'https://github.com/nickderobertis/capiq-excel-downloader-py/',
'Documentation': 'https://nickderobertis.github.io/capiq-excel-downloader-py/'
}