Skip to content

Commit f7bf9ba

Browse files
committed
Tagging an alpha version to register the name on pypi
1 parent 7957fa7 commit f7bf9ba

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

rest_framework_json_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
__title__ = 'djangorestframework-jsonapi'
4-
__version__ = '1.2.0'
4+
__version__ = '2.0.0-alpha'
55
__author__ = ''
66
__license__ = 'MIT'
77
__copyright__ = ''

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def get_package_data(package):
5353
os.system("python setup.py sdist upload")
5454
os.system("python setup.py bdist_wheel upload")
5555
print("You probably want to also tag the version now:")
56-
print(" git tag -a {0} -m 'version {0}'".format(version))
56+
print(" git tag -a {0} -m 'version {0}'".format(
57+
get_version('rest_framework_json_api')))
5758
print(" git push --tags")
5859
sys.exit()
5960

@@ -62,10 +63,10 @@ def get_package_data(package):
6263
name='djangorestframework-jsonapi',
6364
version=get_version('rest_framework_json_api'),
6465
url='https://github.com/django-json-api/django-rest-framework-json-api',
65-
license='BSD',
66+
license='MIT',
6667
description='A Django REST framework API adapter for the json-api spec.',
6768
long_description=read('README.rst'),
68-
author='',
69+
author='Jerel Unruh',
6970
author_email='',
7071
packages=get_packages('rest_framework_json_api'),
7172
package_data=get_package_data('rest_framework_json_api'),
@@ -75,15 +76,14 @@ def get_package_data(package):
7576
'inflection>=0.3.0'
7677
],
7778
classifiers=[
78-
'Development Status :: 4 - Beta',
79+
'Development Status :: 3 - Alpha',
7980
'Environment :: Web Environment',
8081
'Framework :: Django',
8182
'Intended Audience :: Developers',
82-
'License :: OSI Approved :: BSD License',
83+
'License :: OSI Approved :: MIT License',
8384
'Operating System :: OS Independent',
8485
'Programming Language :: Python',
8586
'Programming Language :: Python :: 2',
86-
'Programming Language :: Python :: 2.6',
8787
'Programming Language :: Python :: 2.7',
8888
'Programming Language :: Python :: 3',
8989
'Programming Language :: Python :: 3.2',

0 commit comments

Comments
 (0)