@@ -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