Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Jan 15, 2024
1 parent 6703f05 commit a7c5379
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from setuptools import setup, find_packages

setup(
name="arches_rdm_example_project",
version="0.0.1",
description="",
url="",
author="",
author_email="",
license="GNU AGPL3",
packages=find_packages(),
include_package_data=True,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Django :: 4.2",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)

0 comments on commit a7c5379

Please sign in to comment.