-
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) · 1 KB
/
setup.py
File metadata and controls
27 lines (24 loc) · 1 KB
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
from setuptools import setup, find_packages
import pathlib
# The directory containing this file
here = pathlib.Path(__file__).parent.resolve()
# Read the README file for the long description
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="BinaryTreePy", # PyPI package name
version="0.0.1",
author="Pramod Dixit",
author_email="pramoddixit608@gmail.com",
description="A simple Python library for creating and working with binary trees",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/BinaryTreePy", # optional
packages=find_packages(), # automatically finds 'binarytreepy' package
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
license="MIT", # Correct way to specify license
)