Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial Commit #2

Merged
merged 4 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .idea/aws.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/dotsetup.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
setuptools
22 changes: 8 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,32 +1,26 @@
from setuptools import setup, find_packages
from dotenv import load_dotenv
import os

# Load environment variables from .env
load_dotenv()
version = "0.0.0"

# Get the version from the environment variable
version = os.getenv("VERSION")

with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()

setup(
name='runix',

name='dotsetup',
version=version,
description='A high-level Python web framework for web development.',
description='A simple setup tool for Python projects to manage environment variables and configuration files.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Your Name',
author_email='[email protected]',
author='Muhammad Fiaz',
author_email='[email protected]',
packages=find_packages(),
entry_points={
'console_scripts': [
'runix = runix.cli:create',
],

},
install_requires=[
'click',

# Add other dependencies here
],
)
Loading