Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pydgets
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
713
Mentat
Pydgets
Commits
189f298b
Commit
189f298b
authored
3 years ago
by
Rajmund Hruška
Browse files
Options
Downloads
Patches
Plain Diff
Set the version number in the __init__.py
parent
f0197394
No related branches found
No related tags found
1 merge request
!1
CI/CD
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pydgets/__init__.py
+1
-0
1 addition, 0 deletions
pydgets/__init__.py
setup.py
+9
-1
9 additions, 1 deletion
setup.py
with
10 additions
and
1 deletion
pydgets/__init__.py
+
1
−
0
View file @
189f298b
__version__
=
"
0.9
"
This diff is collapsed.
Click to expand it.
setup.py
+
9
−
1
View file @
189f298b
...
@@ -15,6 +15,14 @@ from setuptools import setup, find_packages
...
@@ -15,6 +15,14 @@ from setuptools import setup, find_packages
from
codecs
import
open
from
codecs
import
open
from
os
import
path
from
os
import
path
import
sys
#
# Import local version of pynspect library, so that we can insert correct version
# number into documentation.
#
sys
.
path
.
insert
(
0
,
path
.
abspath
(
'
.
'
))
import
pydgets
here
=
path
.
abspath
(
path
.
dirname
(
__file__
))
here
=
path
.
abspath
(
path
.
dirname
(
__file__
))
# Get the long description from the README file
# Get the long description from the README file
...
@@ -23,7 +31,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
...
@@ -23,7 +31,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
setup
(
setup
(
name
=
'
pydgets
'
,
name
=
'
pydgets
'
,
version
=
'
0.9
'
,
version
=
pydgets
.
__version__
,
description
=
'
Console widget library for Python 3
'
,
description
=
'
Console widget library for Python 3
'
,
long_description
=
long_description
,
long_description
=
long_description
,
classifiers
=
[
classifiers
=
[
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment