Metadata-Version: 2.4
Name: arches
Version: 8.0.9
Summary: Arches is an open-source, web-based, geospatial information system for cultural heritage inventory and management.
Author: Arches Project
License-Expression: AGPL-3.0-or-later
Project-URL: Homepage, https://archesproject.org/
Project-URL: Documentation, https://arches.readthedocs.io
Project-URL: Repository, https://github.com/archesproject/arches.git
Project-URL: Issues, https://github.com/archesproject/arches/issues
Keywords: django,arches,cultural heritage
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.2
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: arcgis2geojson==2.0.0
Requires-Dist: celery==5.5.0
Requires-Dist: defusedxml==0.7.1
Requires-Dist: Django<6.0.0,>=5.2.3
Requires-Dist: django-celery-results==2.6.0
Requires-Dist: django-cors-headers==4.7.0
Requires-Dist: django-guardian==2.4.0
Requires-Dist: django-hosts==6.0.0
Requires-Dist: django-oauth-toolkit==3.0.1
Requires-Dist: django-pgtrigger==4.15.2
Requires-Dist: django-ratelimit==4.1.0
Requires-Dist: django-recaptcha==4.1.0
Requires-Dist: django-revproxy==0.13.0
Requires-Dist: django-migrate-sql-deux==1.1.1
Requires-Dist: django-webpack-loader==3.1.1
Requires-Dist: edtf==4.0.1
Requires-Dist: elasticsearch<9.0.0,>=8.3.1
Requires-Dist: filetype==1.2.0
Requires-Dist: openpyxl==3.1.5
Requires-Dist: pillow>=7.0.0
Requires-Dist: polib==1.1.1
Requires-Dist: psycopg2==2.9.10
Requires-Dist: pycryptodome<4.0.0,>=3.3.1
Requires-Dist: pyjwt<3,>=2.0.0
Requires-Dist: pyjwt[crypto]
Requires-Dist: PyLD[requests]==1.0.5
Requires-Dist: pyotp>=2.6.0
Requires-Dist: pyprind==2.11.3
Requires-Dist: pyshp==2.1.2
Requires-Dist: python-memcached==1.62
Requires-Dist: python-slugify==7.0.0
Requires-Dist: pytz==2023.3
Requires-Dist: qrcode>=7.3.1
Requires-Dist: rdflib==4.2.2
Requires-Dist: requests-oauthlib==2.0.0
Requires-Dist: requests[security]>=2.32.3
Requires-Dist: semantic-version==2.10.0
Requires-Dist: SPARQLWrapper==1.8.5
Requires-Dist: urllib3<2
Dynamic: license-file

# Arches

Arches is a web-based, geospatial information system for cultural heritage inventory and management. Arches is purpose-built for the international cultural heritage field, and designed to record all types of immovable heritage, including archaeological sites, buildings and other historic structures, landscapes, and heritage ensembles or districts. For more information and background on the Arches project, please visit [archesproject.org](http://archesproject.org/).

For general inquiries and to get technical support from the wider Arches community, visit our [Community Forum](https://community.archesproject.org/).

For general user installation and app documentation, visit [arches.readthedocs.io](https://arches.readthedocs.io).

For the documentation pertaining to the version under development, visit [arches.readthedocs.io/en/latest](https://arches.readthedocs.io/en/latest).  We welcome new contributors; please see [Contributing to Arches](CONTRIBUTING.md) for details.

Issue reports are encouraged! [Please read this article](http://polite.technology/reportabug.html) before reporting issues.
*   [Report a Bug](https://github.com/archesproject/arches/issues/new?template=bug.md)
*   [File a Feature Ticket](https://github.com/archesproject/arches/issues/new?template=feature.md)

[Version 8.0.9 release notes](https://github.com/archesproject/arches/blob/dev/8.0.x/releases/8.0.9.md)

#### Quick Install

Installation is fully documented in the official documentation, [arches.readthedocs.io/en/stable](https://arches.readthedocs.io/en/stable), but assuming you have all of the dependencies installed you should make a virtual environment, activate it, and then run
```
    pip install arches
```
then
```
    arches-admin startproject myproject
```
enter the new `myproject` directory
```
    cd myproject
```
and run
```
    python manage.py setup_db
    python manage.py runserver
```
in a separate terminal, activate your virtual environment and navigate to the root directory of the project ( you should be on the same level as `package.json`) 
```
    cd myproject/myproject
```
and run
```   
    npm run build_development
```
to create a frontend asset bundle. This process should complete in less than 2 minutes.

Finally, visit `localhost:8000` in a browser (only Chrome is fully supported at this time).

If you run into problems, please review our full [installation documentation](http://arches.readthedocs.io/en/stable/installation/)

#### Release Cycle

Our general release cycle will typically be a functional release (either major if there are backward incompatible changes or minor, if there are not) every 9 months. Each functional release will typically be followed by one or more patch releases. See [semver.org](https://semver.org/) for version numbering.

-   Functional releases will usually introduce new functionality to the application, but could also include styling updates, enhancements to the UX, bug fixes, and performance improvements.
-   Patch releases are really only concerned with fixing any bugs related to the previous release or any other issues not yet addressed

#### Support for previous releases

- LTS (Long Term Support) releases will be maintained with patch releases for at least 27 months. Typically an LTS release will be the second minor release following a major release. 
- Feature releases (with the exception of stable releases) will be supported only until the next feature release. After that users are expected to upgrade to the latest release on [pypi.python.org](https://pypi.python.org/pypi/arches)

#### For details regarding future releases, see the [feature roadmap](https://github.com/archesproject/arches-roadmap).
