forked from biosustain/genomediff-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 684 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name='genomediff',
version='0.3.2',
packages=['genomediff'],
url='https://github.com/biosustain/genomediff-python.git',
license='MIT',
author='Lars Schoening',
author_email='lays@biosustain.dtu.dk',
description='GenomeDiff (*.gd) file reader',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
)