Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pharmapsychotic authored Sep 26, 2022
1 parent 3a29b74 commit 84fb552
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 os

import pkg_resources
from setuptools import setup, find_packages

setup(
name="blip",
py_modules=["blip"],
version="1.0",
description="",
author="salesforce",
packages=find_packages(exclude=["tests*"]),
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
include_package_data=True,
extras_require={'dev': ['pytest']},
)

0 comments on commit 84fb552

Please sign in to comment.