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

Commit 9828d48

Browse files
authored
Merge pull request #9 from iotaledger/develop
1.0.0b4
2 parents 4bc19d8 + 161c0f0 commit 9828d48

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+21
-268
lines changed

.gitignore

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
1-
# Python metadata
1+
# Python bytecode.
22
*.py[co]
33

44
# Generated distribution files.
55
# :see: https://packaging.python.org/distributing/
6+
PyOTA.egg-info/*
67
build/*
78
dist/*
8-
PyOTA.egg-info/*
9-
*.so
9+
10+
# Created by ``setup.py test``.
11+
.eggs/*
1012

1113
# Virtualenvs for unit tests.
12-
# :see: https://tox.readthedocs.io/en/latest/
14+
# https://tox.readthedocs.io/en/latest/
1315
.tox/*
1416

15-
# Generated documentation files.
16-
docs/_build
17-
1817
#
1918
# Note: For environment- or IDE-specific metadata (e.g., .DS_Store, .idea, etc.
20-
# you can add these to your own "global" .gitignore file.
21-
# :see: https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
19+
# you can add these to your own "global" .gitignore file.
20+
# https://help.github.com/articles/ignoring-files/#create-a-global-gitignore
2221
#

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include LICENSE
2+
recursive-include examples *.py
3+
recursive-include test *.py

docs/Makefile

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/conf.py

Lines changed: 0 additions & 165 deletions
This file was deleted.

docs/index.rst

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/make.bat

Lines changed: 0 additions & 36 deletions
This file was deleted.

examples/__init__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

iota

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/iota

setup.py

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,6 @@
1717
if (version_info[0] == 3) and (version_info[1] < 5):
1818
raise EnvironmentError('PyOTA requires Python 3.5 or greater.')
1919

20-
##
21-
# Determine dependencies, depending on Python version.
22-
dependencies = [
23-
'filters',
24-
'requests',
25-
'six',
26-
]
27-
28-
if version_info[0:2] < (3, 5):
29-
dependencies.append('typing')
30-
3120
##
3221
# Load long description for PyPi.
3322
with open('README.rst', 'r', 'utf-8') as f: # type: StreamReader
@@ -39,14 +28,19 @@
3928
name = 'PyOTA',
4029
description = 'IOTA API library for Python',
4130
url = 'https://github.com/iotaledger/iota.lib.py',
42-
version = '1.0.0b3',
31+
version = '1.0.0b4',
4332

44-
packages = ['iota'] + ['iota.'+pkg for pkg in find_packages('iota')],
45-
package_data = {'': ['LICENSE']},
33+
packages = find_packages('src'),
34+
include_package_data = True,
4635

4736
long_description = long_description,
4837

49-
install_requires = dependencies,
38+
install_requires = [
39+
'filters',
40+
'requests',
41+
'six',
42+
'typing',
43+
],
5044

5145
test_suite = 'test',
5246
test_loader = 'nose.loader:TestLoader',
File renamed without changes.

0 commit comments

Comments
 (0)