Skip to content

Commit c20fd4a

Browse files
Update release files.
1 parent 4545d00 commit c20fd4a

3 files changed

Lines changed: 44 additions & 1 deletion

File tree

MANIFEST.in

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
include AUTHORS.txt
2+
include LICENSE.txt
3+
include METADATA.md
4+
include README.rst
5+
include SECURITY.md
6+
include tox.ini
7+
include tests/repository_data/keystore/delegation_key
8+
include tests/repository_data/keystore/root_key
9+
include tests/repository_data/keystore/snapshot_key
10+
include tests/repository_data/keystore/targets_key
11+
include tests/repository_data/keystore/timestamp_key
12+
include tuf/_vendor/ed25519/test_data/ed25519
13+
include tuf/_vendor/ed25519/LICENSE
14+
include tuf/_vendor/iso8601/LICENSE
15+
16+
recursive-include docs *.txt
17+
recursive-include docs/papers *.pdf
18+
recursive-include docs/images *.png
19+
recursive-include examples *
20+
recursive-include tests *.py
21+
recursive-include tests *.pem
22+
recursive-include tests *.json
23+
recursive-include tests *.txt
24+
recursive-include tests *.cfg
25+
recursive-include tests *.coveragerc
26+
recursive-include tests *.gz
27+
recursive-include tests *.pub
28+
recursive-include tuf *.gitignore
29+
recursive-include tuf *.md
30+
recursive-include tuf *.rst
31+
recursive-include tuf *.yml

setup.cfg

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[wheel]
2+
universal = 1
3+
4+
[check-manifest]
5+
ignore =
6+
dev-requirements.txt
7+
.travis.yml
8+
.coveragerc

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,14 @@
7575
'tools': ['pycrypto>=2.6.1', 'pynacl>=0.2.3']
7676
}
7777

78+
with open('README.rst') as file_object:
79+
long_description = file_object.read()
80+
7881
setup(
7982
name = 'tuf',
80-
version = '0.7.5',
83+
version = '0.9.8',
8184
description = 'A secure updater framework for Python',
85+
long_description = long_description,
8286
author = 'http://www.theupdateframework.com',
8387
author_email = 'theupdateframework@googlegroups.com',
8488
url = 'http://www.theupdateframework.com',

0 commit comments

Comments
 (0)