-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 876 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 876 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
import os
import sys
import subprocess
import shutil
try:
import setuptools
except ImportError:
sys.exit("setuptools package not found. "
"Please use 'pip install setuptools' first")
from setuptools import setup
# Make sure we're running from the setup.py directory.
script_dir = os.path.dirname(os.path.realpath(__file__))
if script_dir != os.getcwd():
os.chdir(script_dir)
from padfoot.__version__ import __version__
setup(name='padfoot',
version=__version__,
description='Annotation tool for Severus and Wakhan',
url='https://github.com/KolmogorovLab/Padfoot',
author='Ayse Keskus',
author_email = 'aysegokce.keskus@nih.gov',
license='BSD-3-Clause',
packages=['padfoot'],
package_data={'padfoot': ['../beds/*']},
entry_points={'console_scripts': ['padfoot = padfoot.main:main']},
)