-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
32 lines (28 loc) · 1.1 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
#!/usr/bin/env python
import os,sys
if sys.version_info[:2] < (2, 7):
raise Exception('This version of gensim needs Python 2.7 or later. ')
elif sys.version_info[:2] > (3, 0):
raise Exception('This version of gensim might have errors in Python 3 or later. ')
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="NanoMod", # Replace with your own username
version="0.2.2",
author="Qian Liu",
author_email="liuqianhn@gmail.com",
description="A computational tool to detect DNA modifications using Nanopore long-read sequencing data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/WGLab/NanoMod",
#packages=setuptools.find_packages(),
packages=['scripts'],
package_dir={'scripts': 'bin/scripts'},
classifiers=[
"Programming Language :: Python :: 2.7",
'Intended Audience :: Science/Research',
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
],
)