File: setup.py

package info (click to toggle)
optimir 1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,624 kB
  • sloc: python: 2,347; sh: 46; makefile: 6
file content (33 lines) | stat: -rw-r--r-- 898 bytes parent folder | download | duplicates (3)
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
import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()


    
setuptools.setup(
    name="OptimiR",
    version="1.0",
    author="Florian Thibord",
    author_email="florian.thibord@gmail.com",
    description="integrates genetic information to assess the impact of variants on miRNA expression",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url='https://github.com/FlorianThibord/OptimiR',
    packages=setuptools.find_packages(),
    include_package_data=True,
    classifiers=[
        "Programming Language :: Python",
        "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
        "Operating System :: OS Independent",
    ],
    install_requires=[
        'pysam',
        'biopython'
    ],
    entry_points={
        'console_scripts': ['optimir = optimir.command_line:main'],
    }
)