You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
483 B

  1. --- a/setup.py
  2. +++ b/setup.py
  3. @@ -2,14 +2,14 @@ from __future__ import unicode_literals
  4. from setuptools import find_packages, setup
  5. -import picklefield
  6. +import os
  7. with open('README.rst') as file_:
  8. long_description = file_.read()
  9. setup(
  10. name='django-picklefield',
  11. - version=picklefield.__version__,
  12. + version=os.getenv('PKG_VERSION'),
  13. description='Pickled object field for Django',
  14. long_description=long_description,
  15. author='Simon Charette',