File tree Expand file tree Collapse file tree 2 files changed +47
-7
lines changed Expand file tree Collapse file tree 2 files changed +47
-7
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 1
- from setuptools import setup
1
+ import setuptools
2
2
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" ,
9
29
)
You can’t perform that action at this time.
0 commit comments