Skip to content

Commit

Permalink
Merge 44f7839 into fe7c851
Browse files Browse the repository at this point in the history
  • Loading branch information
srivarra authored Jun 29, 2022
2 parents fe7c851 + 44f7839 commit 98aacc0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from os import path, pardir
from setuptools import setup, find_packages

VERSION = '0.3.1'
VERSION = '0.3.2'

PKG_FOLDER = path.abspath(path.join(__file__, pardir))

# set a long description which is basically the README
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()

with open(path.join(PKG_FOLDER, 'requirements.txt')) as req_file:
requirements = req_file.read().splitlines()

# set a long description which is basically the README
with open(path.join(PKG_FOLDER, 'README.md')) as f:
long_description = f.read()

setup(
name='ark-analysis',
Expand Down

0 comments on commit 98aacc0

Please sign in to comment.