-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (41 loc) · 1.35 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (41 loc) · 1.35 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
#!/usr/bin/env python3.8
# -*- coding: utf-8 -*-
"""Packaging:
run the following from the terminal in the outer package directory (utility_scripts_package):
(or python for windows)
python3 -m pip install --upgrade setuptools wheel
python3 setup.py sdist bdist_wheel
install the package by navigating to the /dist dir and running the command below,
replacing the Maj.Min.Pat with the major/minor/patch for the version (e.g. 1.0.0)
pip install utility_scripts-Maj.Min.Pat-py3-none-any.whl
"""
import setuptools
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
setuptools.setup(
name='utility_scripts',
version='1.0.0',
author='Chuck Tucker',
author_email='',
description='Utility Scripts for Simplifying App Development',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/chuktuk/utility_scripts_package',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
install_requires=[
'dash',
'dash-bootstrap-components',
'python-dotenv',
'jaydebeapi',
'pandas',
'paramiko',
'pymongo',
'pytest'
]
)