setup.py 370 B

12345678910111213
  1. from setuptools import setup, find_packages
  2. setup(name='pandasToBrat',
  3. version='1.1',
  4. license='',
  5. author='Ali BELLAMINE',
  6. author_email='contact@alibellamine.me',
  7. description='Function for Brat folder administration from Python and Pandas object.',
  8. packages=find_packages(),
  9. long_description=open('README.md').read(),
  10. )