-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (47 loc) · 1.75 KB
/
setup.py
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
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
from checkversions.version import get_Version
VERSION = "0.0.5"
get_Version(VERSION)
DESCRIPTION = 'CheckVersions is a powerful and intuitive version comparison tool for software development.'
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name="checkversions",
version=VERSION,
author="Muhammad Fiaz",
author_email="contact@muhammmadfiaz.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url='https://github.com/muhammad-fiaz/checkversions.git',
packages=find_packages(),
keywords=[
'version comparison', 'software development', 'semantic versioning',
'version control', 'software versioning', 'release management'
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
python_requires='>=3.8',
install_requires=[
'setuptools==74.1.2',
'pytest==8.3.3',
'dotsetup==0.0.2',
'packaging==24.1',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
license='MIT License',
project_urls={
'Source Code': 'https://github.com/muhammad-fiaz/checkversions.git',
'Bug Tracker': 'https://github.com/muhammad-fiaz/checkversions/issues',
'Documentation': 'https://github.com/muhammad-fiaz/checkversions#readme',
},
)
print("Happy Creative!")