forked from scrapinghub/price-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (29 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='price-parser',
version='0.3.4',
description='Extract price and currency from a raw string',
long_description=open('README.rst', encoding="utf8").read() + "\n\n" + open('CHANGES.rst').read(),
author='Mikhail Korobov',
author_email='[email protected]',
url='https://github.com/scrapinghub/price-parser',
packages=find_packages(exclude=['tests']),
package_data={"price_parser": ["py.typed"]},
install_requires=[
'attrs >= 17.3.0',
],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)