-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpyproject.toml
30 lines (25 loc) · 872 Bytes
/
pyproject.toml
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
# pyproject.toml
[build-system]
requires = ['setuptools>=61.0.0', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'fastpat'
version = '0.9.2'
description = 'USPTO patent data fetcher and parser'
readme = { file = 'README.md' , content-type = 'text/markdown' }
authors = [{ name = 'Doug Hanley', email = 'thesecretaryofwar@gmail.com' }]
license = { text = 'MIT' }
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
keywords = ['patents', 'clustering', 'economics']
dependencies = ['fire', 'numpy', 'pandas', 'lxml', 'xxhash', 'editdistance', 'networkx', 'Cython']
requires-python = '>=3.7'
[project.scripts]
fastpat = 'fastpat:cli.main'
[project.urls]
Homepage = 'http://github.com/iamlemec/fastpat'
[tool.setuptools]
package-dir = { fastpat = 'fastpat' }