Skip to content

Commit

Permalink
8: rpy2 dependency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Reiyan committed Aug 24, 2022
1 parent db316c1 commit 950d7fd
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
build/
dist/
pflacco_venv/
pflacco.egg-info/
pflacco.egg-info/
venv/
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include README.md
include LICENSE
include requirements.txt
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy>=1.17.0
rpy2>=3.0.5
numpy~=1.17.0
rpy2==3.3.*
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()

with open('requirements.txt') as f:
required = f.read().splitlines()

setuptools.setup(
name='pflacco',
version='0.3',
version='0.4.1',
author="Raphael Patrick Prager",
author_email="[email protected]",
description="An python interface to the R package flacco for computing ELA features.",
long_description=long_description,
long_description_content_type="text/markdown",
license = 'MIT',
install_requires=[
'rpy2>=3.0.5',
'numpy>=1.17.0'
],
url="https://github.com/javatechy/dokr",
install_requires=required,
url="https://pypi.org/project/pflacco/",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
)

0 comments on commit 950d7fd

Please sign in to comment.