-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (27 loc) · 1.04 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
28
29
30
31
# Think of this as the instruction manual for our package. It contains
# metadata about our package (like its name and version) and lists
# its dependencies. This file is essential for making our package
# installable via pip.
from setuptools import find_packages, setup
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="python_packages_demo",
version="0.1.0",
include_package_data=True,
python_requires=">=3.11",
pacakges=find_packages(),
setup_requires=["setuptools-git-versioning"],
install_requires=requirements,
author="Nurul ISLAM",
author_email="nislam@bandsintown.com",
description="A sample python package to check if it works via github packages",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
version_config={"dirty_template": "{tag}"},
)