Newer
Older
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyiricdata",
version="0.0",
author="Louis Gendron",
author_email="louis.gendron@umontreal.ca",
description="A python API for interacting with IRIC-data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.iric.ca/bioinfo_iric/pyiricdata.git",
license='MIT',
package_dir={'pyiricdata': 'pyiricdata'},
packages=['pyiricdata'],
entry_points={'console_scripts': ['pyiricdata = pyiricdata.__main__:main']},
#packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
install_requires=[
'pandas',
'requests',
'bs4'
]
)