-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.06 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
33
34
35
36
from os import path
from setuptools import setup, find_packages
from qmap import __version__
directory = path.dirname(path.abspath(__file__))
with open(path.join(directory, 'requirements.txt')) as f:
required = f.read().splitlines()
# Get the long description from the README file
with open(path.join(directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='qmap',
version=__version__,
description='Manage job executions in a cluster',
long_description=long_description,
long_description_content_type='text/x-rst',
url="https://github.com/bbglab/qmap",
author="Barcelona Biomedical Genomics Lab",
author_email="[email protected]",
license="Apache Software License 2.0",
packages=find_packages(),
install_requires=required,
include_package_data=True,
entry_points={
'console_scripts': [
'qmap = qmap.main:cli',
]
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
)