Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit 76d2536

Browse files
committed
File cleanup.
1 parent 9036c0e commit 76d2536

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
http_signature/_version.py export-subst
21
httpsig/_version.py export-subst
File renamed without changes.
File renamed without changes.

MANIFEST

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# file GENERATED by distutils, do NOT edit
2-
CHANGES.rst
2+
CHANGELOG.rst
3+
LICENSE.txt
34
README.rst
5+
requirements.txt
46
setup.cfg
57
setup.py
68
versioneer.py

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
include README.rst
2-
include CHANGES.rst
1+
include *.rst
2+
include *.txt
33
include versioneer.py
44
include httpsig/_version.py
55
include httpsig/tests/*.pem

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22
from setuptools import setup, find_packages
33

44
# versioneer config
@@ -11,7 +11,7 @@
1111
# create long description
1212
with open('README.rst') as file:
1313
long_description = file.read()
14-
with open('CHANGES.rst') as file:
14+
with open('CHANGELOG.rst') as file:
1515
long_description += '\n\n' + file.read()
1616

1717
setup(

0 commit comments

Comments
 (0)