-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (35 loc) · 1.11 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
37
38
import os
from setuptools import setup
def read(fname):
data = ''
with open(os.path.join(os.path.dirname(__file__), fname)) as infile:
data = infile.read()
return data
setup(
name='impy',
version='0.2',
author="Shaman Narayanasamy, Yohan Jarosz",
author_email="[email protected], [email protected]",
description=("Integrated Metaomic Pipeline command-line utility."),
long_description=read('README.rst'),
keywords="metagenomics metatranscriptomics pipeline integrated ecosystems biology",
url="http://r3lab.uni.lu/web/imp",
license = "MIT",
py_modules=['impy'],
install_requires=[
],
entry_points='''
[console_scripts]
impy=impy:cli
''',
classifiers=[
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: BSD License"
],
)