-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (32 loc) · 923 Bytes
/
setup.py
File metadata and controls
executable file
·36 lines (32 loc) · 923 Bytes
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
36
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as fp:
return fp.read()
setup(
name='ACValidator',
version="1.0.0",
author="Shobana Sekar",
author_email="ssekar@tgen.org",
url="https://github.com/tgen/ACValidator",
description="Assembly based approach for in silico validation of circular RNAs",
keywords="",
long_description=read('README.md'),
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
python_requires='>=2.7.13',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
],
install_requires=[
'pysam',
],
#scripts=['ACV_launcher.sh'],
entry_points={
'console_scripts': [
'ACValidator=ACValidator.ACValidator_v1:main',
],
}
)