-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (45 loc) · 1.41 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
41
42
43
44
45
46
47
import setuptools
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="AuthoritySpoke",
version="0.9.1",
author="Matthew Carey",
author_email="[email protected]",
description="legal authority automation",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/mscarey/authorityspoke",
project_urls={
"Bug Tracker": "https://github.com/mscarey/authorityspoke/issues",
"Documentation": "https://authorityspoke.readthedocs.io/en/latest/",
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Legal Industry",
"License :: Free To Use But Restricted",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Natural Language :: English",
],
packages=setuptools.find_packages(exclude=["tests"]),
install_requires=[
"lxml==4.9.1",
"anchorpoint~=0.7.0",
"eyecite~=2.3.4",
"justopinion~=0.2.5",
"legislice~=0.7.0",
"nettlesome~=0.6.1",
"pint>=0.15",
"pydantic",
"python-dotenv",
"python-ranges~=0.2.1",
"python-slugify",
"pyyaml",
"requests",
"roman",
"sympy>=1.7.1",
],
python_requires=">=3.11",
)