-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modify ci pipeline to operate properly
- Loading branch information
aidan
committed
Feb 15, 2024
1 parent
8ed82e2
commit f1e816c
Showing
2 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = '0.0.1' | ||
DESCRIPTION = 'A Version of C#s AutoFixture but for python' | ||
LONG_DESCRIPTION = 'Allows creating of fake test data that autogenerates both primitive and deep object graph types' | ||
|
||
# Setting up | ||
setup( | ||
name="python-autofixture", | ||
version=VERSION, | ||
version="{{VERSION_PLACEHOLDER}}", | ||
author="GanTheMan", | ||
author_email="[email protected]", | ||
description=DESCRIPTION, | ||
|