Browse Source

Include project artifacts in sdist. (Issue #211)

- Add LICENSE, AUTHORS.rst, CHANGELOG.rst and README.rst to MANIFEST.in.
- Add "Hyde contributors" to copyright.
main
Lakshmi Vyasarajan 11 years ago
parent
commit
9a12497e13
5 changed files with 16 additions and 3 deletions
  1. +8
    -0
      CHANGELOG.rst
  2. +2
    -1
      LICENSE
  3. +4
    -0
      MANIFEST.in
  4. +1
    -1
      README.rst
  5. +1
    -1
      hyde/version.py

+ 8
- 0
CHANGELOG.rst View File

@@ -1,3 +1,11 @@
Version 0.8.7a4
============================================================

* Include project artifacts in sdist. (Issue #211)
- Add LICENSE, AUTHORS and CHANGELOG to MANIFEST.in
* Add "Hyde contributors to LICENSE copyright"


Version 0.8.7a3 Version 0.8.7a3
============================================================ ============================================================




+ 2
- 1
LICENSE View File

@@ -1,6 +1,7 @@
The MIT License The MIT License


Copyright (c) 2009 - 2011 Lakshmi Vyasarajan, Ringce.com
Copyright (c) 2009 - 2013 Lakshmi Vyasarajan, Ringce.com
Copyright (c) 2009 - 2013 Hyde contributors.


Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal


+ 4
- 0
MANIFEST.in View File

@@ -1,6 +1,10 @@
exclude *.pyc .DS_Store .gitignore .noseids MANIFEST.in exclude *.pyc .DS_Store .gitignore .noseids MANIFEST.in
include setup.py include setup.py
include distribute_setup.py include distribute_setup.py
include LICENSE
include README.rst
include AUTHORS.rst
include CHANGELOG.rst
recursive-include hyde *.py recursive-include hyde *.py
recursive-include hyde/tests *.py recursive-include hyde/tests *.py
recursive-include hyde/layouts *.* recursive-include hyde/layouts *.*

+ 1
- 1
README.rst View File

@@ -1,4 +1,4 @@
Version 0.8.7a3
Version 0.8.7a4


A brand new **hyde** A brand new **hyde**
==================== ====================


+ 1
- 1
hyde/version.py View File

@@ -2,4 +2,4 @@
""" """
Handles hyde version. Handles hyde version.
""" """
__version__ = '0.8.7a3'
__version__ = '0.8.7a4'

Loading…
Cancel
Save