Skip to content

Commit

Permalink
Merge pull request #4 from esrel/dev
Browse files Browse the repository at this point in the history
updated setup
  • Loading branch information
esrel authored Feb 4, 2023
2 parents 09daa8b + 5631dc2 commit 6da38f9
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
from setuptools import setup
from setuptools import setup, find_packages

import os


def read(path):
return open(os.path.join(os.path.dirname(__file__), path)).read()


setup(
name='econll',
version='0.1.0',
description='',
long_description='',
version='0.1.2',
description='Extended CoNLL Sequence Labeling Evaluation Utilities',
readme="README.md",
long_description=read('README.md'),
long_description_content_type="text/markdown",
url='https://github.com/esrel/econll',
author='Evgeny A. Stepanov',
author_email='stepanov.evgeny.a@gmail.com',
packages=[],
classifiers=['Development Status :: 1 - Planning'],
package_dir={'': "src"},
packages=find_packages('src'),
classifiers=['Development Status :: 2 - Pre-Alpha'],
)

0 comments on commit 6da38f9

Please sign in to comment.