-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 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
23
24
25
26
27
#!/usr/bin/env python3
from setuptools import setup, find_packages
from pathlib import Path
setup(
name='connectwrap',
version='1.1.6',
packages=find_packages(),
license='MIT',
description='Python package made to manage, display & parse data from SQLite file databases.',
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type='text/markdown',
url='https://github.com/CodeConfidant/connectwrap-sqlite3',
author='Drew Hainer',
author_email='codeconfidant@gmail.com',
platforms=['Windows', 'Linux'],
python_requires='>=3.6'
)
# - Update README.md
# - Update Version Number
# - Tar Wrap the Package: python setup.py sdist
# - Check Package: twine check dist/*
# - Upload to PYPI: twine upload dist/*
# - Commit Changes
# - Change Release Version in Github Repo