setup-checkpoint.py 374 B

123456789101112
  1. from setuptools import setup, find_packages
  2. setup(name='pandasToBrat',
  3. version='1.1.2',
  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. long_description=open('README.md').read(),
  9. packages = ["pandasToBrat"]
  10. )