| Total Complexity | 0 | 
| Total Lines | 22 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | # pyre-strict | ||
| 2 | |||
| 3 | import setuptools | ||
| 4 | |||
| 5 | with open('README.md', 'r') as fh: | ||
| 6 | long_description = fh.read() | ||
| 7 | |||
| 8 | setuptools.setup( | ||
| 9 | name='paytext', | ||
| 10 | version='0.0.2', | ||
| 11 | author='Yngve Høiseth', | ||
| 12 | author_email='[email protected]', | ||
| 13 | description='Generalize texts from payment card transactions', | ||
| 14 | long_description=long_description, | ||
| 15 | long_description_content_type='text/markdown', | ||
| 16 | url='https://github.com/yhoiseth/paytext', | ||
| 17 | packages=setuptools.find_packages(), | ||
| 18 | classifiers=( | ||
| 19 | 'Programming Language :: Python :: 3', | ||
| 20 | 'License :: OSI Approved :: MIT License', | ||
| 21 | 'Operating System :: OS Independent', | ||
| 22 | ), | ||
| 24 |