Skip to content

Commit

Permalink
added dev requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
PointlessUser committed May 6, 2023
1 parent 1c8e88c commit b1173eb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/
build/
MecSimCalc.egg-info/
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none"
}
17 changes: 10 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()

VERSION = '0.0.1'
DESCRIPTION = 'Useful functions for MecSimCalc.com'
LONG_DESCRIPTION = 'Useful functions for MecSimCalc.com'
VERSION = "0.0.1"
DESCRIPTION = "Useful functions for MecSimCalc.com"
LONG_DESCRIPTION = "Useful functions for MecSimCalc.com"

# Setting up
setup(
Expand All @@ -21,8 +21,8 @@
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=['Pillow', "pandas"],
keywords=['python', 'MecSimCalc', 'Calculator', 'Simple'],
install_requires=["Pillow", "pandas"],
keywords=["python", "MecSimCalc", "Calculator", "Simple"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand All @@ -36,5 +36,8 @@
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)
],
extras_require={
"dev": ["pytest>=7.0", "twine >= 4.0.2"],
},
)

0 comments on commit b1173eb

Please sign in to comment.