-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python3
from setuptools import setup, find_packages
# Define your package name and other metadata
package_name = 'miopy'
version = '1.3.8'
author = 'Pablo Monfort Lanzas'
author_email = 'pablo.monfort@i-med.ac.at'
description = 'MIOPY: Python tool to study miRNA-mRNA relationships.'
github_url = 'https://github.com/icbi-lab/miopy'
# Read the contents of README.md for the long description
with open('README.rst', 'r') as f:
long_description = f.read()
# Read the list of requirements from requirements.txt
with open('requirements.txt') as f:
requirements = [line.strip() for line in f]
setup(
name=package_name,
version=version,
author=author,
author_email=author_email,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url=github_url,
packages=find_packages(),
scripts=['bin/mio_correlation.py'],
license='LICENSE.txt', # Make sure you have the license file
install_requires=requirements,
include_package_data=True,
package_data={'miopy': ['data/*', 'Rscript/*.r']},
)