Skip to content

Commit

Permalink
added more information in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Aug 11, 2014
1 parent 438ef9a commit 1c51171
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Not sufficient to support schema mode.
class MyHStoreSerializer(serializers.ModelSerializer):
data = HStoreField()
class Meta:
model = MyModel
Expand Down
21 changes: 19 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


name = 'django-rest-framework-hstore'
package = 'rest_framework_hstore'
package = 'djangorestframework-hstore'
description = 'Django Rest Framework tools for django-hstore'
url = 'https://github.com/djangonauts/django-rest-framework-hstore'
author = 'Federico Capoano'
Expand All @@ -19,6 +19,21 @@
'djangorestframework',
'django_hstore'
]
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],


def get_packages(package):
Expand Down Expand Up @@ -61,9 +76,11 @@ def get_package_data(package):
url=url,
license=license,
description=description,
long_description=open('README.rst').read(),
author=author,
author_email=author_email,
packages=get_packages(package),
package_data=get_package_data(package),
install_requires=install_requires
install_requires=install_requires,
classifiers=classifiers
)

0 comments on commit 1c51171

Please sign in to comment.