-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
executable file
·40 lines (35 loc) · 1.24 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
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import find_packages, setup
version = (Path(__file__).parent / "number_parser/VERSION").read_text("ascii").strip()
setup(
name="number-parser",
version=version,
description="parse numbers written in natural language",
long_description=open("README.rst", encoding="utf8").read()
+ "\n\n"
+ open("CHANGES.rst").read(),
author="Arnav Kapoor",
author_email="[email protected]",
url="https://github.com/scrapinghub/number-parser/",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
"attrs >= 17.3.0",
],
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"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",
],
)