Skip to content

Commit

Permalink
Created setup.py file
Browse files Browse the repository at this point in the history
a setup file will allow the user to pip install the file 
helpful when using this in Google Colab
  • Loading branch information
SYBIOTE committed Mar 23, 2021
1 parent 1635b9c commit 36d902d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from setuptools import setup, find_packages

import sys
sys.path.append('./camogen')

setup(
name = "Camogen",
author="Gael Lederrey",
license = "MIT License",
version = "0.1",
packages = find_packages(),
)

0 comments on commit 36d902d

Please sign in to comment.