Skip to content

Commit

Permalink
Merge #24
Browse files Browse the repository at this point in the history
24: Update setup r=aragilar a=aragilar



Co-authored-by: James Tocknell <aragilar@gmail.com>
  • Loading branch information
bors[bot] and aragilar committed Aug 14, 2021
2 parents bdded2d + f22669d commit 8575a2d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -6,7 +6,7 @@ ignore=E226,N802,N803,N806,E402
[versioneer]
VCS = git
style = pep440
versionfile_source = venv_tools/_version.py
versionfile_source = src/venv_tools/_version.py
versionfile_build = venv_tools/_version.py
tag_prefix = v
#parentdir_prefix =
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -8,7 +8,8 @@
setuptools.setup(
name="venv_tools",
version = versioneer.get_version(),
packages = setuptools.find_packages(),
packages = setuptools.find_packages('src'),
package_dir = {'': 'src'},
install_requires = ["virtualenv"],
author = "James Tocknell",
author_email = "aragilar@gmail.com",
Expand All @@ -26,6 +27,9 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
cmdclass=versioneer.get_cmdclass(),
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 8575a2d

Please sign in to comment.