-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
executable file
·34 lines (33 loc) · 1.13 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
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)