-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (48 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (48 loc) · 1.57 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of the `plugy` python module
#
# Copyright
# 2018-2022
# EMBL & Heidelberg University
#
# Author(s): Dénes Türei (turei.denes@gmail.com)
# Nicolas Peschke
# Olga Ivanova
#
# Distributed under the GPLv3 License.
# See accompanying file LICENSE.txt or copy at
# http://www.gnu.org/licenses/gpl-3.0.html
#
# Webpage: https://github.com/saezlab/plugy
#
from setuptools import setup
with open('requirements.txt', 'r') as fp:
requirements = [l.strip() for l in fp]
with open('README.md', 'r') as f:
readme = f.read()
setup(
name = 'plugy',
version = '1.1.1',
packages = ['plugy', 'plugy.data', 'plugy.test'],
url = 'https://github.com/saezlab/plugy',
license = 'GPLv3',
author = 'Dénes Türei, Nicolas Peschke, Olga Ivanova',
author_email = 'turei.denes@gmail.com',
description = 'Processing plug microfluidics data',
long_description = readme,
long_description_content_type = 'text/markdown; charset=UTF-8',
install_requires = requirements,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
],
)