Skip to content

Commit c1140c1

Browse files
committed
Updated the configuration files 🔧🔧
1 parent b0f3b4e commit c1140c1

File tree

2 files changed

+47
-7
lines changed

2 files changed

+47
-7
lines changed

setup.cfg

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[metadata]
2+
name = Telegram-Bot8
3+
version = 0.1.5
4+
author = AppDevIn Sliver
5+
author_email = teamprojectlive@example.com
6+
description = Python package to make getting yaml easier and cleaner
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
url = https://github.com/AppDevIn/Yaml-Python
10+
project_urls =
11+
Bug Tracker = https://github.com/AppDevIn/Yaml-Python/issues
12+
classifiers =
13+
Programming Language :: Python :: 3
14+
License :: OSI Approved :: MIT License
15+
Operating System :: OS Independent
16+
17+
[options]
18+
packages = find:
19+
python_requires = >=3.6
20+

setup.py

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,29 @@
1-
from setuptools import setup
1+
import setuptools
22

3-
setup(
4-
name='Yaml-Python',
5-
version='1.0',
6-
author='Sliver',
7-
author_email='jeyavishnu@yahoo.com',
8-
py_modules=['yaml']
3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
6+
7+
setuptools.setup(
8+
name="Yaml8",
9+
version="0.1.0",
10+
author="AppDevIn Sliver",
11+
author_email=" teamprojectlive@example.com",
12+
description="Python package to make getting yaml easier and cleaner",
13+
long_description=long_description,
14+
long_description_content_type="text/markdown",
15+
url="https://github.com/AppDevIn/Yaml-Python",
16+
project_urls={
17+
"Bug Tracker": "https://github.com/AppDevIn/Yaml-Python/issues",
18+
},
19+
classifiers=[
20+
"Programming Language :: Python :: 3",
21+
"License :: OSI Approved :: MIT License",
22+
"Operating System :: OS Independent",
23+
],
24+
install_requires=[
25+
"PyYAML==6.0"
26+
],
27+
packages=setuptools.find_packages(),
28+
python_requires=">=3.6",
929
)

0 commit comments

Comments
 (0)