Skip to content

Commit

Permalink
added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitYadav-codes committed Oct 29, 2023
1 parent 9f201ca commit b6cfe73
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 24 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,7 @@ cython_debug/
#.idea/

# vscode
.vscode
.vscode

#
/*.dcm
23 changes: 0 additions & 23 deletions dcm_parser/__main__.py

This file was deleted.

27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from setuptools import find_packages, setup

with open("README.md", "r") as f:
long_description = f.read()

setup(
name="dcm-files-parser",
version="0.0.1",
description="parser for dcm files",
packages=find_packages(where="app"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/y-menace/dcm-parser",
author="MohitYadav",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
install_requires=["jinja2"],
extras_require={
"dev": ["pytest", "twine"],
},
python_requires=">=3.6",
)

0 comments on commit b6cfe73

Please sign in to comment.