-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 833 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 833 Bytes
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
from pathlib import Path
setup(
name='filewrap',
version='1.1.7',
py_modules=['filewrap'],
license='MIT',
description='Python package for file/directory/archive management.',
long_description=(Path(__file__).parent / 'README.md').read_text(),
long_description_content_type='text/markdown',
url='https://github.com/CodeConfidant/filewrap-os',
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/* -u __token__ -p pypi-<Token Value>
# - Commit Changes
# - Change Release Version in Github Repo