This repository was archived by the owner on Nov 24, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.6 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.6 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# setup.py
"""Setup script."""
from setuptools import setup
with open('requirements.txt', 'r', encoding='UTF-8') as f:
required: list[str] = f.read().splitlines()
with open("README.md", 'r', encoding='UTF-8') as f:
long_description: str = f.read()
setup(
name='wolfsoftware.get-language-versions',
version='0.1.2',
packages=['wolfsoftware.get_language_versions'],
entry_points={
'console_scripts': [
'get-language-versions=wolfsoftware.get_language_versions.main:main',
],
},
author='Wolf Software',
author_email='pypi@wolfsoftware.com',
description='Fetch up-to-date data on the latest version(s) available on Github Actions for a given set of languages.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DevelopersToolbox/get-language-verisons',
project_urls={
' Source': 'https://github.com/DevelopersToolbox/get-language-verisons',
' Tracker': 'https://github.com/DevelopersToolbox/get-language-verisons/issues/',
' Documentation': 'https://github.com/DevelopersToolbox/get-language-verisons',
' Funding': 'https://ko-fi.com/wolfsoftware',
' Say Thanks!': 'https://github.com/sponsors/TGWolf',
},
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development',
],
python_requires='>=3.9',
install_requires=required,
)