Skip to content

Commit

Permalink
setup: Add a setup file to enable simple installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Jun 9, 2016
1 parent f71b445 commit 75c7b52
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import os

from distutils.core import setup

pkg_dir = os.path.dirname(os.path.abspath(
__file__
))

readme = ""
readme_filename = os.path.join(pkg_dir, "README.rst")
with open(readme_filename, "r") as readme_file:
readme = readme_file.read()

setup(
name="lab_config",
version="0.1.0",
license="BSD??",
description="A package of utilities in use in our lab.",
long_description=readme,
author="John Kirkham",
author_email="kirkhamj@janelia.hhmi.org",
url="https://github.com/DudLab/lab_config",
packages=["config"],
classifiers=[]
)

0 comments on commit 75c7b52

Please sign in to comment.