-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (29 loc) · 920 Bytes
/
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
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import versioneer
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [i.strip() for i in open('requirements.txt').readlines()]
setup(
name='lcdblib',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="A set of helper functions for bioinformatics analysis with snakemake.",
long_description=readme,
author="Ryan Dale",
author_email='[email protected]',
url='https://github.com/lcdb/lcdblib',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
license="MIT license",
entry_points={
'console_scripts':
[
'chrom_convert = lcdblib.utils.chrom_convert:main',
],
},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)