Set versions and python metadata for first beta release of 0.3.0

This commit is contained in:
Garret Wassermann 2020-11-12 02:16:44 -05:00
parent c9fa0c81c7
commit 6b2026fb2a
2 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@ project_root = os.path.dirname(here)
NAME = 'django-helpdesk-demodesk' NAME = 'django-helpdesk-demodesk'
DESCRIPTION = 'A demo Django project using django-helpdesk' DESCRIPTION = 'A demo Django project using django-helpdesk'
README = open(os.path.join(here, 'README.rst')).read() README = open(os.path.join(here, 'README.rst')).read()
VERSION = '0.3.0.dev2' VERSION = '0.3.0b1'
#VERSION = open(os.path.join(project_root, 'VERSION')).read().strip() #VERSION = open(os.path.join(project_root, 'VERSION')).read().strip()
AUTHOR = 'django-helpdesk team' AUTHOR = 'django-helpdesk team'
URL = 'https://github.com/django-helpdesk/django-helpdesk' URL = 'https://github.com/django-helpdesk/django-helpdesk'
@ -22,9 +22,9 @@ CLASSIFIERS = ['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Framework :: Django :: 2.0', 'Framework :: Django :: 2.2',
'Framework :: Django :: 2.1', 'Framework :: Django :: 3.0',
'Framework :: Django :: 2.2'] 'Framework :: Django :: 3.1']
KEYWORDS = [] KEYWORDS = []
PACKAGES = ['demodesk'] PACKAGES = ['demodesk']
REQUIREMENTS = [ REQUIREMENTS = [

View File

@ -6,7 +6,7 @@ from distutils.util import convert_path
from fnmatch import fnmatchcase from fnmatch import fnmatchcase
from setuptools import setup, find_packages from setuptools import setup, find_packages
version = '0.3.0.dev2' version = '0.3.0b1'
# Provided as an attribute, so you can append to these instead # Provided as an attribute, so you can append to these instead
# of replicating them: # of replicating them:
@ -130,9 +130,9 @@ setup(
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Framework :: Django", "Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
'Framework :: Django :: 2.2', 'Framework :: Django :: 2.2',
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Environment :: Web Environment", "Environment :: Web Environment",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Intended Audience :: Customer Service", "Intended Audience :: Customer Service",