-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1022 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 1022 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
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
"""
In case you forget the steps to upload your package.
cookiecutter 'some github-url'
1. flake8 #to ensure files are up-to-code... literally
2. pytest #to ensure test cases work properly
3. bumpversion --current-version [version no.] [maj/min] setup.py .\\__init__
4. python setup.py sdist bdist_wheel
5. twine check dist/*
6. twine upload --repository-url https://test.pypi.org/legacy/ dist/*
7. twine upload dist/*
"""
read_README = open('README.txt', mode='r')
README = "".join(read_README.readlines())
read_README.close()
setup(
name="KnitCryption",
version="2.0.8",
packages=find_packages(),
scripts=[],
install_requires=["docutils>=0.3"],
package_data={
"": [".txt"]
},
author="Keenan W. Wilkinson",
author_email="keenanwilkinson@outlook.com",
description="Encrytion package to assist in hiding data",
long_description=README,
license="GPL-3.0 license",
url="https://github.com/WilkinsonK/KnitCryption"
)