forked from diging-training/example-package-lfuncs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 723 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='example-lfuncs',
version='0.1',
description='A few functions to teach Python and PIP',
url='https://github.com/diging-training/example-package-lfuncs',
author='jdamerow',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
],
python_requires='>=3.6')