|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='Resolver',
version='0.1.0',
description='When some synset is only slightly better than some other, use ranking from another run of Wosedon.',
author= "MichaĆ Moczulski",
author_email="michalmoczulski1a@gmail.com",
packages=[
'Resolver'
],
license='',
entry_points={
'console_scripts': [
'Resolver = Resolver.Resolver:main'
]
}
)
|