Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
TejasMorbagal committed Dec 2, 2022
1 parent 9765a78 commit d357796
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
7 changes: 0 additions & 7 deletions admin/environment.yml

This file was deleted.

2 changes: 0 additions & 2 deletions admin/setup.py

This file was deleted.

File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions aws_admin/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version='0.1.0'
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
import setuptools
setuptools.setup()
from setuptools import setup, find_packages
packages = find_packages(exclude=["test", "test.*"])
version = None
with open('aws_admin/version.py') as f:
exec(f.read())
setup(
name="aws_admin",
version=version,
packages=packages
)

0 comments on commit d357796

Please sign in to comment.