Diff of /setup.py [000000] .. [c66173]

Switch to unified view

a b/setup.py
1
#!/usr/bin/env python
2
3
import os,sys
4
import setuptools
5
6
7
with open("README.md", "r") as fh:
8
    long_description = fh.read()
9
10
11
setuptools.setup(
12
    name="DeepMod", # Replace with your own username
13
    version="0.1.3",
14
    author="Qian Liu",
15
    author_email="",
16
    description="A deep-learning tool to detect DNA modifications using Nanopore long-read sequencing data",
17
    long_description=long_description,
18
    long_description_content_type="text/markdown",
19
    url="https://github.com/WGLab/DeepMod",
20
    #packages=setuptools.find_packages(),
21
    packages=['DeepMod_scripts'],
22
    package_dir={'DeepMod_scripts': 'bin/DeepMod_scripts'},
23
    scripts=['bin/DeepMod.py', 'DeepMod_tools/cal_EcoliDetPerf.py', 'DeepMod_tools/generate_motif_pos.py', 'DeepMod_tools/hm_cluster_predict.py', 'DeepMod_tools/sum_chr_mod.py'],
24
    package_data={'train_deepmod': ['train_deepmod/*/*']},
25
    #data_files=[('train_deepmod', ['train_deepmod/*'])],
26
    classifiers=[
27
        "Programming Language :: Python",
28
        'Intended Audience :: Science/Research',
29
        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
30
        "Operating System :: OS Independent",
31
    ],
32
)