Skip to content

Commit

Permalink
add file for pip installable
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Pizzuto committed Mar 29, 2021
1 parent f89aaab commit 010aae9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import setuptools

long_message = 'Fast Response Analysis'
version = "0.0.1"

setuptools.setup(
name="fast_response",
version=version,
author="Pizzuto, Alex",
author_email="",
description="Code for performing rapid neutrino followup",
long_description=long_message,
#long_description_content_type="text/markdown",
url="https://github.com/icecube/FastResponseAnalysis",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
],
python_requires='>=3.1',
)

0 comments on commit 010aae9

Please sign in to comment.