-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 742 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (28 loc) · 742 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
#!/usr/bin/env python3
import setuptools
with open("README.md") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
install_requires = fh.read()
name = "zzfunc"
version = "1.0.0"
release = "1.0.0"
setuptools.setup(
name=name,
version=release,
author="kgrabs",
description="I made this",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["zzfunc"],
url="https://github.com/kgrabs/zzfunc",
package_data={
'zzfunc': ['py.typed'],
},
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)